Add Docker Compose configuration for tvheadend service

This commit is contained in:
Nikholas Pcenicni
2026-04-26 12:12:19 -04:00
parent 4161bbe5a9
commit 48f60bd8d9
2 changed files with 24 additions and 0 deletions

View File

View File

@@ -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: