docker/jellyfin/compose.yaml

35 lines
953 B
YAML

services:
jellyfin:
image: ghcr.io/linuxserver/jellyfin:10.11.6
container_name: jellyfin
volumes:
# Config
- $APPDATA/jellyfin:/config
# Media
- $MEDIADIR/tv:/tv
- $MEDIADIR/movies:/movies
- $MEDIADIR/music:/music
- $MEDIADIR/audiobooks:/audiobooks
- $MEDIADIR/emissions:/emissions
- $MEDIADIR/books:/books
- $MEDIADIR/comics:/comics
- $MEDIADIR/youtube:/youtube
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
ports:
- 8096:8096
# labels:
# - "traefik.enable=true"
# - "traefik.http.routers.jellyfin.rule=Host(`jellyfin.${LOCAL_DOMAIN}`)"
# - "traefik.http.routers.jellyfin.entrypoints=https"
# - "traefik.http.routers.jellyfin.tls=true"
# - "traefik.http.services.jellyfin.loadbalancer.server.port=8096"
# networks:
# - proxy
restart: unless-stopped
# networks:
# proxy:
# external: true