From 48f60bd8d921ee8cac6ea4e9e0990d6cc8c56272 Mon Sep 17 00:00:00 2001 From: Nikholas Pcenicni <82239765+nikpcenicni@users.noreply.github.com> Date: Sun, 26 Apr 2026 12:12:19 -0400 Subject: [PATCH] Add Docker Compose configuration for tvheadend service --- komodo/arr/tv-headend/.env.sample | 0 komodo/arr/tv-headend/compose.yaml | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 komodo/arr/tv-headend/.env.sample create mode 100644 komodo/arr/tv-headend/compose.yaml diff --git a/komodo/arr/tv-headend/.env.sample b/komodo/arr/tv-headend/.env.sample new file mode 100644 index 0000000..e69de29 diff --git a/komodo/arr/tv-headend/compose.yaml b/komodo/arr/tv-headend/compose.yaml new file mode 100644 index 0000000..a452e3e --- /dev/null +++ b/komodo/arr/tv-headend/compose.yaml @@ -0,0 +1,24 @@ +--- +services: + tvheadend: + image: lscr.io/linuxserver/tvheadend:latest + container_name: tvheadend + environment: + - PUID=${PUID:-1000} + - PGID=${PGID:-1000} + - TZ=${TZ:-Etc/UTC} + # - RUN_OPTS= #optional + volumes: + - tvheadend:/config + - tvheadend-recordings:/recordings + ports: + - 9981:9981 + - 9982:9982 + devices: + # - /dev/dri:/dev/dri #optional + # - /dev/dvb:/dev/dvb #optional + restart: unless-stopped + +volumes: + tvheadend: + tvheadend-recordings: \ No newline at end of file