Files
jellyfin/compose.yml
T
Kappeh e5c8417744
Deploy / Deploy (push) Successful in 14s
Add tunarr container
2026-04-20 05:24:32 +01:00

43 lines
968 B
YAML

services:
jellyfin:
container_name: jellyfin
image: jellyfin/jellyfin:10.11.5.20251215-030205
restart: unless-stopped
user: 2007:2007 # jellyfin:jellyfin
group_add:
- 303 # render
devices:
- /dev/dri/
networks:
- jellyfin_network
ports:
- 8096:8096
volumes:
- ./config:/config:rw
- ./cache:/cache:rw
- /mnt/video_library_1/data:/library:rw
- /mnt/video_library_1/metadata:/metadata:rw
labels:
diun.enable: "true"
diun.watch_repo: "true"
diun.include_tags: "latest"
tunarr:
image: chrisbenincasa/tunarr:1.2.11
restart: unless-stopped
# https://github.com/chrisbenincasa/tunarr/issues/1523
# user: 2007:2007 # jellyfin:jellyfin
networks:
- jellyfin_network
ports:
- 8097:8000
environment:
TZ: "Europe/London"
volumes:
- ./tunarr:/config/tunarr
networks:
jellyfin_network:
name: jellyfin_network