20 lines
523 B
YAML
20 lines
523 B
YAML
services:
|
|
tvheadend:
|
|
image: lscr.io/linuxserver/tvheadend:latest
|
|
container_name: tvheadend
|
|
network_mode: host
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Paris
|
|
# - RUN_OPTS= #optional
|
|
volumes:
|
|
- /var/lib/docker/volumes/tvheadend/data:/config
|
|
- /var/lib/docker/volumes/tvheadend/recordings:/recordings
|
|
ports:
|
|
- 9981:9981
|
|
- 9982:9982
|
|
devices:
|
|
- /dev/dri:/dev/dri #optional
|
|
# - /dev/dvb:/dev/dvb #optional
|
|
restart: unless-stopped |