29 lines
577 B
YAML
29 lines
577 B
YAML
|
---
|
||
|
services:
|
||
|
jellyfin:
|
||
|
image: lscr.io/linuxserver/jellyfin:latest
|
||
|
container_name: jellyfin
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Etc/UTC
|
||
|
- JELLYFIN_PublishedServerUrl=media.azw27.de #optional
|
||
|
volumes:
|
||
|
- ./config:/config
|
||
|
- /mnt/FS1:/data/FS1
|
||
|
- /mnt/FS2:/data/FS2
|
||
|
ports:
|
||
|
- 8096:8096
|
||
|
#- 8920:8920 #optional
|
||
|
- 7359:7359/udp #optional
|
||
|
- 1900:1900/udp #optional
|
||
|
restart: unless-stopped
|
||
|
networks:
|
||
|
- nginx_proxy
|
||
|
- web
|
||
|
|
||
|
networks:
|
||
|
nginx_proxy:
|
||
|
external: true
|
||
|
web:
|