33 lines
759 B
YAML
33 lines
759 B
YAML
services:
|
|
jellyfin:
|
|
container_name: jellyfin
|
|
image: jellyfin/jellyfin:latest
|
|
networks:
|
|
- caddy_internal
|
|
dns:
|
|
- 192.168.1.131 # pi-hole
|
|
volumes:
|
|
- /srv/rundata/jellyfin/config:/config
|
|
- /srv/rundata/jellyfin/cache:/cache
|
|
# media mounts
|
|
- /media/vk/L200/Media:/media
|
|
- /mnt/wd:/media_wd
|
|
# - /path/to/media2:/media2:ro
|
|
devices:
|
|
- /dev/dri:/dev/dri
|
|
restart: 'unless-stopped'
|
|
|
|
#ports:
|
|
# - 8096:8096
|
|
# - 7359:7359/udp
|
|
|
|
# Optional - alternative address used for autodiscovery
|
|
environment:
|
|
- JELLYFIN_PublishedServerUrl=https://films.catmedved.com
|
|
hostname: films.catmedved.com
|
|
|
|
networks:
|
|
caddy_internal:
|
|
name: caddy_internal
|
|
external: true
|