Jellyfin uses the address 10.11.x and not the local address 192.168.8.x, so you can’t connect the application to it, does anyone know how to fix it?
10.11.x are the Docker Network IP Addresses.
Jellyfin exposes Ports on your network (192.168.8.x) to communicate to it.
sudo docker ps --format “table {{.Names}}\t{{.Ports}}” | grep -i jell
jellyfin_server_1 8096/tcp, 0.0.0.0:7359->7359/udp, 8920/tcp
jellyfin_app_proxy_1 0.0.0.0:8096->8096/tcp
Port 8096 will get you to the Jellyfin UI.
1 Like