forked from Ivasoft/docker-tvheadend
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dbc65430eb | ||
|
|
ed2383819d | ||
|
|
ae729f43d5 | ||
|
|
ae1d953f12 | ||
|
|
42eeb7b99e | ||
|
|
e0127d992c | ||
|
|
09f478d615 | ||
|
|
d5b2cbaeb4 | ||
|
|
59a8633e2a | ||
|
|
8c239ea3e4 | ||
|
|
f768afd1c3 | ||
|
|
12c36b7feb | ||
|
|
0dcb22b4bc |
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
@@ -1,7 +1,7 @@
|
|||||||
<!--- Provide a general summary of the issue in the Title above -->
|
<!--- Provide a general summary of the issue in the Title above -->
|
||||||
|
|
||||||
[linuxserverurl]: https://linuxserver.io
|
[linuxserverurl]: https://linuxserver.io
|
||||||
[][linuxserverurl]
|
[][linuxserverurl]
|
||||||
|
|
||||||
|
|
||||||
<!--- If you have an issue with the project, please provide us with the following information -->
|
<!--- If you have an issue with the project, please provide us with the following information -->
|
||||||
|
|||||||
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
@@ -1,7 +1,7 @@
|
|||||||
<!--- Provide a general summary of your changes in the Title above -->
|
<!--- Provide a general summary of your changes in the Title above -->
|
||||||
|
|
||||||
[linuxserverurl]: https://linuxserver.io
|
[linuxserverurl]: https://linuxserver.io
|
||||||
[][linuxserverurl]
|
[][linuxserverurl]
|
||||||
|
|
||||||
|
|
||||||
<!--- Before submitting a pull request please check the following -->
|
<!--- Before submitting a pull request please check the following -->
|
||||||
|
|||||||
31
Dockerfile
31
Dockerfile
@@ -4,7 +4,12 @@ MAINTAINER saarg
|
|||||||
# package version
|
# package version
|
||||||
ARG ARGTABLE_VER="2.13"
|
ARG ARGTABLE_VER="2.13"
|
||||||
ARG UNICODE_VER="2.09"
|
ARG UNICODE_VER="2.09"
|
||||||
ARG XMLTV_VER="0.5.67"
|
ARG XMLTV_VER="0.5.68"
|
||||||
|
|
||||||
|
# set version label
|
||||||
|
ARG BUILD_DATE
|
||||||
|
ARG VERSION
|
||||||
|
LABEL build_version="Build-date:- ${BUILD_DATE}"
|
||||||
|
|
||||||
# Environment settings
|
# Environment settings
|
||||||
ENV HOME="/config"
|
ENV HOME="/config"
|
||||||
@@ -27,8 +32,10 @@ RUN \
|
|||||||
gettext-dev \
|
gettext-dev \
|
||||||
git \
|
git \
|
||||||
libhdhomerun-dev \
|
libhdhomerun-dev \
|
||||||
|
libgcrypt-dev \
|
||||||
libtool \
|
libtool \
|
||||||
libxml2-dev \
|
libxml2-dev \
|
||||||
|
libxslt-dev \
|
||||||
make \
|
make \
|
||||||
mercurial \
|
mercurial \
|
||||||
openssl-dev \
|
openssl-dev \
|
||||||
@@ -59,7 +66,10 @@ RUN \
|
|||||||
perl-compress-raw-zlib \
|
perl-compress-raw-zlib \
|
||||||
perl-date-manip \
|
perl-date-manip \
|
||||||
perl-datetime \
|
perl-datetime \
|
||||||
|
perl-digest-sha1 \
|
||||||
perl-file-slurp \
|
perl-file-slurp \
|
||||||
|
perl-file-temp \
|
||||||
|
perl-getopt-long \
|
||||||
perl-html-parser \
|
perl-html-parser \
|
||||||
perl-html-tree \
|
perl-html-tree \
|
||||||
perl-http-cookies \
|
perl-http-cookies \
|
||||||
@@ -77,6 +87,7 @@ RUN \
|
|||||||
perl-term-readkey \
|
perl-term-readkey \
|
||||||
perl-test-exception \
|
perl-test-exception \
|
||||||
perl-test-requires \
|
perl-test-requires \
|
||||||
|
perl-try-tiny \
|
||||||
perl-xml-parser \
|
perl-xml-parser \
|
||||||
perl-xml-sax \
|
perl-xml-sax \
|
||||||
python \
|
python \
|
||||||
@@ -90,7 +101,7 @@ RUN \
|
|||||||
/tmp/iconv-src && \
|
/tmp/iconv-src && \
|
||||||
curl -o \
|
curl -o \
|
||||||
/tmp/iconv.tar.gz -L \
|
/tmp/iconv.tar.gz -L \
|
||||||
http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz && \
|
ftp://www.mirrorservice.org/sites/ftp.gnu.org/gnu/libiconv/libiconv-1.14.tar.gz && \
|
||||||
tar xf /tmp/iconv.tar.gz -C \
|
tar xf /tmp/iconv.tar.gz -C \
|
||||||
/tmp/iconv-src --strip-components=1 && \
|
/tmp/iconv-src --strip-components=1 && \
|
||||||
cd /tmp/iconv-src && \
|
cd /tmp/iconv-src && \
|
||||||
@@ -104,20 +115,32 @@ RUN \
|
|||||||
|
|
||||||
# install perl modules
|
# install perl modules
|
||||||
curl -L http://cpanmin.us | perl - App::cpanminus && \
|
curl -L http://cpanmin.us | perl - App::cpanminus && \
|
||||||
|
cpanm Date::Language && \
|
||||||
|
cpanm DateTime::Format::ISO8601 && \
|
||||||
|
cpanm DateTime::Format::Strptime && \
|
||||||
|
cpanm HTML::Entities && \
|
||||||
cpanm HTML::TableExtract && \
|
cpanm HTML::TableExtract && \
|
||||||
|
cpanm HTML::TreeBuilder && \
|
||||||
cpanm HTTP::Cache::Transparent && \
|
cpanm HTTP::Cache::Transparent && \
|
||||||
cpanm inc && \
|
cpanm inc && \
|
||||||
cpanm IO::Scalar && \
|
cpanm IO::Scalar && \
|
||||||
cpanm IO::Socket::SSL && \
|
cpanm IO::Socket::SSL && \
|
||||||
|
cpanm JSON::PP && \
|
||||||
cpanm Lingua::EN::Numbers::Ordinate && \
|
cpanm Lingua::EN::Numbers::Ordinate && \
|
||||||
cpanm Lingua::Preferred && \
|
cpanm Lingua::Preferred && \
|
||||||
|
cpanm List::MoreUtils && \
|
||||||
|
cpanm LWP::Simple && \
|
||||||
|
cpanm LWP::UserAgent && \
|
||||||
cpanm PerlIO::gzip && \
|
cpanm PerlIO::gzip && \
|
||||||
cpanm SOAP::Lite && \
|
cpanm SOAP::Lite && \
|
||||||
|
cpanm Storable && \
|
||||||
cpanm Term::ProgressBar && \
|
cpanm Term::ProgressBar && \
|
||||||
cpanm Unicode::UTF8simple && \
|
cpanm Unicode::UTF8simple && \
|
||||||
cpanm version && \
|
cpanm version && \
|
||||||
cpanm WWW::Mechanize && \
|
cpanm WWW::Mechanize && \
|
||||||
|
cpanm XML::DOM && \
|
||||||
cpanm XML::LibXML && \
|
cpanm XML::LibXML && \
|
||||||
|
cpanm XML::LibXSLT && \
|
||||||
cpanm XML::TreePP && \
|
cpanm XML::TreePP && \
|
||||||
cpanm XML::Twig && \
|
cpanm XML::Twig && \
|
||||||
cpanm XML::Writer && \
|
cpanm XML::Writer && \
|
||||||
@@ -208,7 +231,9 @@ RUN \
|
|||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
ffmpeg \
|
ffmpeg \
|
||||||
ffmpeg-libs \
|
ffmpeg-libs \
|
||||||
libhdhomerun-libs && \
|
libhdhomerun-libs \
|
||||||
|
libxml2 \
|
||||||
|
libxslt && \
|
||||||
|
|
||||||
# cleanup
|
# cleanup
|
||||||
apk del --purge \
|
apk del --purge \
|
||||||
|
|||||||
22
README.md
22
README.md
@@ -1,9 +1,9 @@
|
|||||||
[linuxserverurl]: https://linuxserver.io
|
[linuxserverurl]: https://linuxserver.io
|
||||||
[forumurl]: https://forum.linuxserver.io
|
[forumurl]: https://forum.linuxserver.io
|
||||||
[ircurl]: https://www.linuxserver.io/index.php/irc/
|
[ircurl]: https://www.linuxserver.io/irc/
|
||||||
[podcasturl]: https://www.linuxserver.io/index.php/category/podcast/
|
[podcasturl]: https://www.linuxserver.io/podcast/
|
||||||
|
|
||||||
[][linuxserverurl]
|
[][linuxserverurl]
|
||||||
|
|
||||||
The [LinuxServer.io][linuxserverurl] team brings you another container release featuring easy user mapping and community support. Find us for support at:
|
The [LinuxServer.io][linuxserverurl] team brings you another container release featuring easy user mapping and community support. Find us for support at:
|
||||||
* [forum.linuxserver.io][forumurl]
|
* [forum.linuxserver.io][forumurl]
|
||||||
@@ -26,6 +26,7 @@ Multiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV D
|
|||||||
```
|
```
|
||||||
docker create \
|
docker create \
|
||||||
--name=tvheadend \
|
--name=tvheadend \
|
||||||
|
--net=bridge \
|
||||||
-v <path to data>:/config \
|
-v <path to data>:/config \
|
||||||
-e PGID=<gid> -e PUID=<uid> \
|
-e PGID=<gid> -e PUID=<uid> \
|
||||||
-p 9981:9981 \
|
-p 9981:9981 \
|
||||||
@@ -48,12 +49,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.
|
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)
|
* `-p 1234` - the port(s)
|
||||||
* `-v /config` - explain what lives here
|
* `-v /config` - explain what lives here
|
||||||
* `-e PGID` for GroupID - see below for explanation
|
* `-e PGID` for GroupID - see below for explanation
|
||||||
* `-e PUID` for UserID - see below for explanation
|
* `-e PUID` for UserID - 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*
|
* `-e TZ` - for timezone information *eg Europe/London, etc*
|
||||||
|
|
||||||
It is based on alpine linux with s6 overlay, for shell access whilst the container is running do `docker exec -it tvheadend /bin/bash`.
|
It is based on alpine linux with s6 overlay, for shell access whilst the container is running do `docker exec -it tvheadend /bin/bash`.
|
||||||
@@ -114,8 +123,9 @@ FFmpeg is installed in /usr/bin/ in case you need to use it with pipe.
|
|||||||
|
|
||||||
**EPG XML file**
|
**EPG XML file**
|
||||||
|
|
||||||
If you have EPG data in XML format from a supplier, you can drop it in the data folder of your your /config volume mapping. Then choose the XML file grabber in Configuration --> Channel/EPG --> EPG Grabber Modules.
|
If you have EPG data in XML format from a supplier, you can drop it in the data folder of your /config volume mapping. If it doesn't exist, create it. Then choose the XML file grabber in Configuration --> Channel/EPG --> EPG Grabber Modules.
|
||||||
If you use WebGrab+Plus, choose the WebGrab+Plus XML file grabber. The XML file goes in the same path as above.
|
If you use WebGrab+Plus, choose the WebGrab+Plus XML file grabber. The XML file goes in the same path as above.
|
||||||
|
The xml file has to be named guide.xml.
|
||||||
|
|
||||||
For advanced setup of tvheadend, go to [Tvheadend][tvheadendurl]
|
For advanced setup of tvheadend, go to [Tvheadend][tvheadendurl]
|
||||||
|
|
||||||
@@ -126,5 +136,7 @@ For advanced setup of tvheadend, go to [Tvheadend][tvheadendurl]
|
|||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
+ **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.
|
+ **10.09.2016:** Add layer badges to README.
|
||||||
+ **05.09.2016:** Initial release.
|
+ **05.09.2016:** Initial release.
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
xmltv_file_location=/config/data/*.xml
|
|
||||||
dflag=
|
dflag=
|
||||||
vflag=
|
vflag=
|
||||||
cflag=
|
cflag=
|
||||||
qflag=
|
qflag=
|
||||||
if (( $# < 1 ))
|
if (( $# < 1 ))
|
||||||
then
|
then
|
||||||
cat "$xmltv_file_location"
|
cat /config/data/*.xml
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user