jellyfin/docker-compose.yml hinzugefügt

This commit is contained in:
2025-07-02 17:21:30 +00:00
parent f888d74eb9
commit 41244f4d2c

View File

@@ -0,0 +1,13 @@
services:
jellyfin:
image: jellyfin/jellyfin:latest
user: "${UID:-1000}:${GID:-1000}" # Optional: Benutzer-ID und Gruppen-ID
ports:
- "${JELLYFIN_PORT:-8096}:8096"
volumes:
- "${CONFIG_DIR:-./config}:/config"
- "${CACHE_DIR:-./cache}:/cache"
- "${MEDIA_DIR:-./media}:/media"
restart: unless-stopped
environment:
- TZ=${TZ:-Europe/Berlin}