2025-02-17, 11:10 PM
(This post was last modified: 2025-02-18, 09:04 AM by shadow82. Edited 2 times in total.)
Did it
sudo docker compose down
sudo docker compose pull
sudo docker compose up -d
After that my versions are:
Server version: 10.10.6
Network version: 10.10.6
Compilation version: 10.10.6
But hte behaviour is the same.
It seems it tries to connect also via ports 8096 and 8920 which are not allowed on my FW.
It works like this:
Below my docker-compose.yml file
sudo docker compose down
sudo docker compose pull
sudo docker compose up -d
After that my versions are:
Server version: 10.10.6
Network version: 10.10.6
Compilation version: 10.10.6
But hte behaviour is the same.
- Windows Web app client works fine
- Android client works fine
- WebOS client works fine
- Chromecast client is unable to connect to the server.
It seems it tries to connect also via ports 8096 and 8920 which are not allowed on my FW.
It works like this:
- Client request to https://tv.acme.com:443 is terminated on FW
- FW proxy with new request to http://jellyfin.home:8082
- Request lands on Docker container and is port forwarded to port 8096
Below my docker-compose.yml file
Code:
Services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Warsaw
volumes:
- /home/shadow82/docker/jellyfin/config:/config
- /mnt/Storage/Movies and Shows:/media
ports:
- 8082:8096
restart: unless-stopped