add demo resources / compose files

This commit is contained in:
2024-08-10 14:15:09 -07:00
parent 6ea6ab49ac
commit 0d9c2c507b
3 changed files with 159 additions and 0 deletions

20
jellyfin.compose.yaml Normal file
View File

@ -0,0 +1,20 @@
# From https://docs.linuxserver.io/images/docker-jellyfin/#docker-compose-recommended-click-here-for-more-info
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
volumes:
- /path/to/library:/config
- /path/to/tvseries:/data/tvshows
- /path/to/movies:/data/movies
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
restart: unless-stopped