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}