jellyfin/docker-compose.yml aktualisiert

This commit is contained in:
2025-07-02 18:31:49 +00:00
parent 0876d15ae4
commit f09c30ab1b

View File

@@ -2,6 +2,7 @@ services:
jellyfin: jellyfin:
image: jellyfin/jellyfin:latest image: jellyfin/jellyfin:latest
user: "${UID:-1000}:${GID:-1000}" # Optional: Benutzer-ID und Gruppen-ID user: "${UID:-1000}:${GID:-1000}" # Optional: Benutzer-ID und Gruppen-ID
network_mode: 'host'
ports: ports:
- "${JELLYFIN_PORT:-8096}:8096" - "${JELLYFIN_PORT:-8096}:8096"
volumes: volumes:
@@ -18,4 +19,6 @@ services:
restart: unless-stopped restart: unless-stopped
environment: environment:
- TZ=${TZ:-Europe/Berlin} - TZ=${TZ:-Europe/Berlin}
- JELLYFIN_PublishedServerUrl=${JELLYFIN_URL} - JELLYFIN_PublishedServerUrl=${JELLYFIN_URL}
extra_hosts:
- 'host.docker.internal:host-gateway'