forked from Ivasoft/docker-tvheadend
Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6011e4a322 | ||
|
|
f7d763f73f | ||
|
|
c45f84aa27 | ||
|
|
dc1d442d96 | ||
|
|
a7c57ecc35 | ||
|
|
ec5307ef63 | ||
|
|
abfafbb52e | ||
|
|
5a7a4d31f0 | ||
|
|
f8731afa97 | ||
|
|
d9bde53d3d | ||
|
|
62dc7d0d26 | ||
|
|
ced7dc0842 | ||
|
|
0605182ffc | ||
|
|
dbc65430eb | ||
|
|
ed2383819d |
14
Dockerfile
14
Dockerfile
@@ -1,4 +1,4 @@
|
||||
FROM lsiobase/alpine
|
||||
FROM lsiobase/alpine:3.5
|
||||
MAINTAINER saarg
|
||||
|
||||
# package version
|
||||
@@ -6,6 +6,11 @@ ARG ARGTABLE_VER="2.13"
|
||||
ARG UNICODE_VER="2.09"
|
||||
ARG XMLTV_VER="0.5.68"
|
||||
|
||||
# set version label
|
||||
ARG BUILD_DATE
|
||||
ARG VERSION
|
||||
LABEL build_version="Build-date:- ${BUILD_DATE}"
|
||||
|
||||
# Environment settings
|
||||
ENV HOME="/config"
|
||||
|
||||
@@ -159,8 +164,8 @@ RUN \
|
||||
# build dvb-apps
|
||||
hg clone http://linuxtv.org/hg/dvb-apps /tmp/dvb-apps && \
|
||||
cd /tmp/dvb-apps && \
|
||||
make && \
|
||||
make install && \
|
||||
make -C lib && \
|
||||
make -C lib install && \
|
||||
|
||||
# build tvheadend
|
||||
git clone https://github.com/tvheadend/tvheadend.git /tmp/tvheadend && \
|
||||
@@ -240,6 +245,9 @@ RUN \
|
||||
# copy local files
|
||||
COPY root/ /
|
||||
|
||||
# add picons
|
||||
ADD picons.tar.bz2 /picons
|
||||
|
||||
# ports and volumes
|
||||
EXPOSE 9981 9982
|
||||
VOLUME /config /recordings
|
||||
|
||||
30
README.md
30
README.md
@@ -11,9 +11,10 @@ The [LinuxServer.io][linuxserverurl] team brings you another container release f
|
||||
* [Podcast][podcasturl] covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation!
|
||||
|
||||
# linuxserver/tvheadend
|
||||
[](http://microbadger.com/images/linuxserver/tvheadend "Get your own image badge on microbadger.com")[][hub][][hub][](http://jenkins.linuxserver.io:8080/job/Dockers/job/LinuxServer.io/job/linuxserver-tvheadend/)
|
||||
[](https://microbadger.com/images/linuxserver/tvheadend "Get your own version badge on microbadger.com")[](http://microbadger.com/images/linuxserver/tvheadend "Get your own image badge on microbadger.com")[][hub][][hub][](http://jenkins.linuxserver.io:8080/job/Dockers/job/LinuxServer.io/job/linuxserver-tvheadend/)
|
||||
[hub]: https://hub.docker.com/r/linuxserver/tvheadend/
|
||||
|
||||
|
||||
[Tvheadend](https://www.tvheadend.org/) 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).
|
||||
@@ -28,7 +29,9 @@ docker create \
|
||||
--name=tvheadend \
|
||||
--net=bridge \
|
||||
-v <path to data>:/config \
|
||||
-v <path to recordings>:/recordings \
|
||||
-e PGID=<gid> -e PUID=<uid> \
|
||||
-e RUN_OPTS=<parameter> \
|
||||
-p 9981:9981 \
|
||||
-p 9982:9982 \
|
||||
--device=/dev/dvb
|
||||
@@ -49,12 +52,20 @@ Add one of the tags, if required, to the linuxserver/tvheadend line of the run/c
|
||||
|
||||
If you use IPTV, SAT>IP or HDHomeRun, you need to create the container with --net=host and remove the -p flags. This is because of a limitation in docker and multicast.
|
||||
|
||||
**Parameters**
|
||||
## Parameters
|
||||
|
||||
`The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side.
|
||||
For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container.
|
||||
So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080
|
||||
http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80.`
|
||||
|
||||
|
||||
* `-p 1234` - the port(s)
|
||||
* `-v /config` - explain what lives here
|
||||
* `-v /config` - Where TVHeadend show store it's config files
|
||||
* `-v /recordings` - Where you want the PVR to store recordings
|
||||
* `-e PGID` for GroupID - see below for explanation
|
||||
* `-e PUID` for UserID - see below for explanation
|
||||
* `-e RUN_OPTS` additional runtime parameters - see below for explanation
|
||||
* `--device=/dev/dvb` - for passing through DVB-cards
|
||||
* `--net=host` - for IPTV, SAT>IP and HDHomeRun
|
||||
* `-e TZ` - for timezone information *eg Europe/London, etc*
|
||||
@@ -72,6 +83,11 @@ In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as bel
|
||||
uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup)
|
||||
```
|
||||
|
||||
## Additional runtime parameters
|
||||
|
||||
In some cases it might be necessary to start tvheadend with additional parameters, for example to enable debugging or specify webroot for reverse proxy. Be sure to have the right parameters set, as adding the wrong once might lead to the container not starting correctly.
|
||||
|
||||
|
||||
## Setting up the application
|
||||
|
||||
The setup depends if you run the one of the stable tags or use latest. Running latest is the easiest as it has a setup wizard.
|
||||
@@ -123,6 +139,11 @@ The xml file has to be named guide.xml.
|
||||
|
||||
For advanced setup of tvheadend, go to [Tvheadend][tvheadendurl]
|
||||
|
||||
**Picons**
|
||||
|
||||
We have added all the picons from [picons.xyz](https://picons.xyz/) in the folder /picons. To enable the use of these picons, add the path to the Channel icon path in Configuration --> General --> Base.
|
||||
You need to enable minimum advanced view level to see the picons options.
|
||||
|
||||
## Info
|
||||
|
||||
* Shell access whilst the container is running: `docker exec -it tvheadend /bin/bash`
|
||||
@@ -130,6 +151,9 @@ For advanced setup of tvheadend, go to [Tvheadend][tvheadendurl]
|
||||
|
||||
## Versions
|
||||
|
||||
+ **07.02.2017:** Add variable to add additional runtime paramters.
|
||||
+ **05.02.2017:** Update to alpine 3.5 and change dvb-apps to only compile needed libs.
|
||||
+ **14.11.2016:** Add picons from picons.xyz to /picons folder and add info to README.
|
||||
+ **22.09.2016:** Fix broken tv_grab_wg, libs for xmltv and update README.
|
||||
+ **18.09.2016:** Update XMLTV to 0.5.68 and update README.
|
||||
+ **10.09.2016:** Add layer badges to README.
|
||||
|
||||
@@ -12,4 +12,5 @@ mkdir -p \
|
||||
|
||||
# permissions
|
||||
chown -R abc:abc \
|
||||
/config
|
||||
/config \
|
||||
/picons
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
|
||||
RUN_ARRAY=(${RUN_OPTS})
|
||||
|
||||
exec \
|
||||
s6-setuidgid abc /usr/bin/tvheadend -C -c /config
|
||||
s6-setuidgid abc /usr/bin/tvheadend -C -c /config "${RUN_ARRAY[@]}"
|
||||
|
||||
Reference in New Issue
Block a user