From bbdfdaa4c47c669f5ace516cbfc8797fd827a83a Mon Sep 17 00:00:00 2001 From: jasper Date: Sun, 7 Dec 2025 07:14:35 +0100 Subject: [PATCH] Add tvheadend/compose.yaml --- tvheadend/compose.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tvheadend/compose.yaml diff --git a/tvheadend/compose.yaml b/tvheadend/compose.yaml new file mode 100644 index 0000000..c41a386 --- /dev/null +++ b/tvheadend/compose.yaml @@ -0,0 +1,20 @@ +--- +services: + tvheadend: + image: lscr.io/linuxserver/tvheadend:latest + container_name: tvheadend + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europs/Amsterdam + - RUN_OPTS= #optional + volumes: + - /srv/appdata/tvheadend/data:/config + - /media/recordings:/recordings + ports: + - 9981:9981 + - 9982:9982 + devices: + - /dev/dri:/dev/dri #optional + # - /dev/dvb:/dev/dvb #optional + restart: unless-stopped \ No newline at end of file