jellyfin-deployment/compose.yml

32 lines
606 B
YAML
Raw Permalink Normal View History

2024-09-11 13:43:52 +02:00
---
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
2024-09-11 15:42:23 +02:00
env_file:
- .env
2024-09-11 13:43:52 +02:00
volumes:
- ./config:/config
- /mnt/FS1:/data/FS1
- /mnt/FS2:/data/FS2
2024-11-06 13:59:51 +01:00
- /mnt/FS3:/data/FS3
2024-09-15 15:12:04 +02:00
- /mnt/raid/music:/data/music
2024-09-11 13:43:52 +02:00
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: