mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-04 18:00:20 +00:00
21 lines
476 B
YAML
21 lines
476 B
YAML
version: "2"
|
|
services:
|
|
tvheadend:
|
|
image: linuxserver/tvheadend
|
|
container_name: tvheadend
|
|
environment:
|
|
- TZ=Europe/Helsinki
|
|
- PUID=1000
|
|
- PGID=985
|
|
volumes:
|
|
- /docker/tvheadend:/config
|
|
- /mnt/Storage/Media/PVR:/recordings
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- 9981:9981
|
|
- 9982:9982
|
|
devices:
|
|
- /dev/dri:/dev/dri #hardware acceleration
|
|
- /dev/dvb:/dev/dvb #tuner card
|
|
restart: always
|