Files
docker/dvb/docker-compose.yaml

37 lines
745 B
YAML

volumes:
tv-data:
name: tv-data
jellyfin-config:
name: jellyfin-config
jellyfin-cache:
name: jellyfin-cache
services:
tvheadend:
image: lscr.io/linuxserver/tvheadend:latest
container_name: tvheadend
hostname: tvheadend
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- tv-data:/config
- /media/backup/media/Aufnahmen:/recordings
network_mode: host
restart: unless-stopped
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
hostname: jellyfin
volumes:
- jellyfin-config:/config
- jellyfin-cache:/cache
- /media/backup/media:/media
network_mode: host
restart: unless-stopped
user: 1000:1000