From f09c30ab1b2954ffda0af6a3076656e6d092aea9 Mon Sep 17 00:00:00 2001 From: thomas Date: Wed, 2 Jul 2025 18:31:49 +0000 Subject: [PATCH] jellyfin/docker-compose.yml aktualisiert --- jellyfin/docker-compose.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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