Add docker-compose.yml
Some checks failed
External Trigger Scheduler / external-trigger-scheduler (push) Has been cancelled

Creation
This commit is contained in:
2025-05-20 18:56:57 -04:00
parent 549a522c87
commit 6ff4914d76

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
version: "3.8"
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- JELLYFIN_PublishedServerUrl=http://10.10.10.142 #optional
volumes:
- ./jellyfin/config:/config
- /mnt/8tbraid/video/tv:/data/tvshows
- /mnt/8tbraid/video/movie:/data/movies
ports:
- 9096:8096
- 9920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
restart: unless-stopped
networks:
- Video
networks:
Video:
external: true