29 lines
643 B
YAML
29 lines
643 B
YAML
services:
|
|
jellyfin:
|
|
image: lscr.io/linuxserver/jellyfin:latest
|
|
container_name: jellyfin
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1001
|
|
- TZ=Europe/Berlin
|
|
#- JELLYFIN_PublishedServerUrl=http://192.168.0.5 #optional
|
|
volumes:
|
|
- ./config:/config
|
|
#- /path/to/tvseries:/data/tvshows
|
|
- video:/data/movies
|
|
ports:
|
|
- 8097:8096
|
|
#- 8920:8920 #optional
|
|
#- 7359:7359/udp #optional
|
|
#- 1900:1900/udp #optional
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
video:
|
|
name: video
|
|
driver: local
|
|
driver_opts:
|
|
type: nfs4
|
|
o: addr=${NFS_SERVER},rw
|
|
device: ":${PFAD}"
|