mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-08 19:10:28 +00:00
39 lines
1.6 KiB
YAML
39 lines
1.6 KiB
YAML
# [Tvheadend](https://www.tvheadend.org/) works as a proxy server: is a TV
|
|
# streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S,
|
|
# DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT>IP and HDHomeRun as input
|
|
# sources. Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and
|
|
# SAT>IP streaming. Multiple EPG sources are supported (over-the-air DVB and
|
|
# ATSC including OpenTV DVB extensions, XMLTV, PyXML).
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
tvheadend:
|
|
image: ghcr.io/linuxserver/tvheadend
|
|
container_name: tvheadend
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
# Optionally specify additional arguments to be passed. See Additional runtime parameters.
|
|
- RUN_OPTS= # optional
|
|
volumes:
|
|
# Where TVHeadend show store it's config files.
|
|
- ${BASEDIR:-/volume1/docker}/tvheadend/config:/config
|
|
# Where you want the PVR to store recordings.
|
|
- ${BASEDIR:-/volume1/docker}/tvheadend/recordings:/recordings
|
|
ports:
|
|
# WebUI
|
|
- 9981:9981
|
|
# HTSP server port.
|
|
- 9982:9982
|
|
devices:
|
|
# Only needed if you want to use your AMD/Intel GPU for hardware accelerated video encoding (vaapi).
|
|
- /dev/dri:/dev/dri # optional
|
|
# Only needed if you want to pass through a DVB card to the container. If you use IPTV or HDHomeRun you can leave it out.
|
|
- /dev/dvb:/dev/dvb # optional
|
|
restart: unless-stopped
|