2025-04-11, 03:19 PM
I'm assuming you have a way of adding extra arguments to the Jellyfin container in the TrueNAS UI? If I'm reading our docs and Docker's docs correctly, you need to do one of two things.
You need to specify an "extra host" in the Jellyfin container.
https://jellyfin.org/docs/general/instal...container/
Or you need to add a local loopback bind to the docker bridge network.
https://docs.docker.com/reference/compos.../networks/
You need to specify an "extra host" in the Jellyfin container.
https://jellyfin.org/docs/general/instal...container/
Code:
extra_hosts:
- 'host.docker.internal:host-gateway'
Or you need to add a local loopback bind to the docker bridge network.
https://docs.docker.com/reference/compos.../networks/
Code:
driver_opts:
com.docker.network.bridge.host_binding_ipv4: "127.0.0.1"