diff --git a/jellyfin/docker-compose.yml b/jellyfin/docker-compose.yml index 93a9674..18543b7 100644 --- a/jellyfin/docker-compose.yml +++ b/jellyfin/docker-compose.yml @@ -2,6 +2,7 @@ services: jellyfin: image: jellyfin/jellyfin:latest user: "${UID:-1000}:${GID:-1000}" # Optional: Benutzer-ID und Gruppen-ID + network_mode: 'host' ports: - "${JELLYFIN_PORT:-8096}:8096" volumes: @@ -18,4 +19,6 @@ services: restart: unless-stopped environment: - TZ=${TZ:-Europe/Berlin} - - JELLYFIN_PublishedServerUrl=${JELLYFIN_URL} \ No newline at end of file + - JELLYFIN_PublishedServerUrl=${JELLYFIN_URL} + extra_hosts: + - 'host.docker.internal:host-gateway' \ No newline at end of file