VDR Hinzugefügt

This commit is contained in:
borgal
2022-08-03 14:04:10 +00:00
parent 0db826ba8b
commit 4ffa1683e4
2 changed files with 46 additions and 0 deletions

5
vdr/.env.sample Normal file
View File

@@ -0,0 +1,5 @@
NFS_SERVER=192.168.0.xxx
PFAD=/Pfad/zu/den/VDR-Aufnahmen
#
# Auf Rechte achten
#

41
vdr/docker-compose.yml Normal file
View File

@@ -0,0 +1,41 @@
version: "3.2"
services:
vdr-server:
image: lapicidae/vdr-server
container_name: vdr-server
environment:
- PUID=1000
- PGID=1004
- TZ=Europe/Berlin
- LANG=de_DE.UTF-8
- LOG2FILE=true
- PLUGINS=epgsearch live streamdev-server ddci2 markad vnsiserver
volumes:
- ./system:/vdr/system
- ./config:/vdr/config
- rec:/vdr/recordings
- ./cache:/vdr/cache
- ./log:/vdr/log #optional
ports:
- 8008:8008
- 3000:3000
- 2004:2004
- 6419:6419 #optional
- 6419:6419/udp #optional
- 34890:34890 #optional
- 8099:8099 #optional
devices:
- /dev/dvb:/dev/dvb #optional
cap_add:
- SYS_TIME #optional: read hint!
labels:
- "com.centurylinklabs.watchtower.enable=false"
restart: unless-stopped
volumes:
rec:
driver: local
driver_opts:
type: nfs
o: addr=${NFS_SERVER},rw
device: ":${PFAD}"