forked from Ivasoft/docker-tvheadend
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
62dc7d0d26 | ||
|
|
ced7dc0842 | ||
|
|
0605182ffc | ||
|
|
dbc65430eb | ||
|
|
ed2383819d |
@@ -6,6 +6,11 @@ ARG ARGTABLE_VER="2.13"
|
|||||||
ARG UNICODE_VER="2.09"
|
ARG UNICODE_VER="2.09"
|
||||||
ARG XMLTV_VER="0.5.68"
|
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"
|
||||||
|
|
||||||
@@ -240,6 +245,9 @@ RUN \
|
|||||||
# copy local files
|
# copy local files
|
||||||
COPY root/ /
|
COPY root/ /
|
||||||
|
|
||||||
|
# add picons
|
||||||
|
ADD picons.tar.bz2 /picons
|
||||||
|
|
||||||
# ports and volumes
|
# ports and volumes
|
||||||
EXPOSE 9981 9982
|
EXPOSE 9981 9982
|
||||||
VOLUME /config /recordings
|
VOLUME /config /recordings
|
||||||
|
|||||||
14
README.md
14
README.md
@@ -49,7 +49,13 @@ 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
|
||||||
@@ -123,6 +129,11 @@ 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]
|
||||||
|
|
||||||
|
**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
|
## Info
|
||||||
|
|
||||||
* Shell access whilst the container is running: `docker exec -it tvheadend /bin/bash`
|
* Shell access whilst the container is running: `docker exec -it tvheadend /bin/bash`
|
||||||
@@ -130,6 +141,7 @@ For advanced setup of tvheadend, go to [Tvheadend][tvheadendurl]
|
|||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
+ **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.
|
+ **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.
|
+ **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.
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ mkdir -p \
|
|||||||
|
|
||||||
# permissions
|
# permissions
|
||||||
chown -R abc:abc \
|
chown -R abc:abc \
|
||||||
/config
|
/config \
|
||||||
|
/picons
|
||||||
|
|||||||
Reference in New Issue
Block a user