Add DVB-C stack for recordings and media server.

This commit is contained in:
2022-10-07 07:54:35 +02:00
parent 78fa0c1a37
commit 31244a0e88

40
dvb/docker-compose.yaml Normal file
View File

@@ -0,0 +1,40 @@
version: "3.9"
volumes:
tv-data:
name: tv-data
tv-recordings:
name: tv-recordings
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