Files
container/jellyfin/docker-compose.yml
T

24 lines
699 B
YAML
Raw Normal View History

2025-07-02 17:21:30 +00:00
services:
jellyfin:
image: jellyfin/jellyfin:latest
2025-07-02 18:02:27 +00:00
user: "${UID:-1000}:${GID:-1000}" # Optional: Benutzer-ID und Gruppen-ID
2025-07-02 18:31:49 +00:00
network_mode: 'host'
2025-07-02 18:02:27 +00:00
ports:
- "${JELLYFIN_PORT:-8096}:8096"
2025-07-02 17:21:30 +00:00
volumes:
2025-07-02 18:02:27 +00:00
- "${CONFIG_DIR:-./config}:/config"
- "${CACHE_DIR:-./cache}:/cache"
2025-07-02 18:30:02 +00:00
- type: bind
source: "${MOVIES_DIR}"
target: /media
read_only: true
- type: bind
source: "${SERIES_DIR}"
target: /media2
read_only: true
2025-07-02 18:02:27 +00:00
restart: unless-stopped
2025-07-02 17:21:30 +00:00
environment:
- TZ=${TZ:-Europe/Berlin}
2025-07-02 18:31:49 +00:00
- JELLYFIN_PublishedServerUrl=${JELLYFIN_URL}
extra_hosts:
- 'host.docker.internal:host-gateway'