forked from Ivasoft/docker-tvheadend
Compare commits
12 Commits
1979ea7e-l
...
23754f9a-l
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f4088e7131 | ||
|
|
17c2043ab9 | ||
|
|
2bd50241a4 | ||
|
|
fabc111bf2 | ||
|
|
8b3aa0d0fb | ||
|
|
868e115a6c | ||
|
|
aa93ad951b | ||
|
|
fe3852826d | ||
|
|
92c2661783 | ||
|
|
fb9920c1b3 | ||
|
|
91358c7ba5 | ||
|
|
ac859a0867 |
@@ -247,6 +247,7 @@ RUN \
|
|||||||
libssl1.1 \
|
libssl1.1 \
|
||||||
libva \
|
libva \
|
||||||
libva-intel-driver \
|
libva-intel-driver \
|
||||||
|
intel-media-driver \
|
||||||
mesa-dri-ati \
|
mesa-dri-ati \
|
||||||
libvpx \
|
libvpx \
|
||||||
libxml2 \
|
libxml2 \
|
||||||
|
|||||||
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
@@ -385,7 +385,9 @@ pipeline {
|
|||||||
// Build Docker container for push to LS Repo
|
// Build Docker container for push to LS Repo
|
||||||
stage('Build-Single') {
|
stage('Build-Single') {
|
||||||
when {
|
when {
|
||||||
environment name: 'MULTIARCH', value: 'false'
|
expression {
|
||||||
|
env.MULTIARCH == 'false' || params.PACKAGE_CHECK == 'true'
|
||||||
|
}
|
||||||
environment name: 'EXIT_STATUS', value: ''
|
environment name: 'EXIT_STATUS', value: ''
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
@@ -410,7 +412,10 @@ pipeline {
|
|||||||
// Build MultiArch Docker containers for push to LS Repo
|
// Build MultiArch Docker containers for push to LS Repo
|
||||||
stage('Build-Multi') {
|
stage('Build-Multi') {
|
||||||
when {
|
when {
|
||||||
environment name: 'MULTIARCH', value: 'true'
|
allOf {
|
||||||
|
environment name: 'MULTIARCH', value: 'true'
|
||||||
|
expression { params.PACKAGE_CHECK == 'false' }
|
||||||
|
}
|
||||||
environment name: 'EXIT_STATUS', value: ''
|
environment name: 'EXIT_STATUS', value: ''
|
||||||
}
|
}
|
||||||
parallel {
|
parallel {
|
||||||
@@ -515,7 +520,7 @@ pipeline {
|
|||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
set -e
|
set -e
|
||||||
TEMPDIR=$(mktemp -d)
|
TEMPDIR=$(mktemp -d)
|
||||||
if [ "${MULTIARCH}" == "true" ]; then
|
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then
|
||||||
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
|
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
|
||||||
else
|
else
|
||||||
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
|
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
|
||||||
@@ -576,7 +581,7 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
echo "Packages were updated. Cleaning up the image and exiting."
|
echo "Packages were updated. Cleaning up the image and exiting."
|
||||||
if [ "${MULTIARCH}" == "true" ]; then
|
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then
|
||||||
docker rmi ${IMAGE}:amd64-${META_TAG}
|
docker rmi ${IMAGE}:amd64-${META_TAG}
|
||||||
else
|
else
|
||||||
docker rmi ${IMAGE}:${META_TAG}
|
docker rmi ${IMAGE}:${META_TAG}
|
||||||
@@ -600,7 +605,7 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
echo "There are no package updates. Cleaning up the image and exiting."
|
echo "There are no package updates. Cleaning up the image and exiting."
|
||||||
if [ "${MULTIARCH}" == "true" ]; then
|
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then
|
||||||
docker rmi ${IMAGE}:amd64-${META_TAG}
|
docker rmi ${IMAGE}:amd64-${META_TAG}
|
||||||
else
|
else
|
||||||
docker rmi ${IMAGE}:${META_TAG}
|
docker rmi ${IMAGE}:${META_TAG}
|
||||||
|
|||||||
@@ -181,7 +181,7 @@ docker run -d \
|
|||||||
#### Host vs. Bridge
|
#### Host vs. Bridge
|
||||||
|
|
||||||
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 to work with these services Tvheadend requires a multicast address of `239.255.255.250` and a UDP port of `1900` which at this time is not possible with docker bridge mode.
|
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 to work with these services Tvheadend requires a multicast address of `239.255.255.250` and a UDP port of `1900` which at this time is not possible with docker bridge mode.
|
||||||
If you have other host services which also use multicast such as SSDP/DLNA/Emby you may experience stabilty problems. These can be solved by giving tvheadend its own IP using macavlan.
|
If you have other host services which also use multicast such as SSDP/DLNA/Emby you may experience stabilty problems. These can be solved by giving tvheadend its own IP using macvlan.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
|
|
||||||
@@ -309,6 +309,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
|||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
* **11.05.21:** - Added Intel iHD driver support.
|
||||||
* **02.06.20:** - Update to Alpine 3.12.
|
* **02.06.20:** - Update to Alpine 3.12.
|
||||||
* **27.12.19:** - Add requests and perl-json-xs package.
|
* **27.12.19:** - Add requests and perl-json-xs package.
|
||||||
* **27.12.19:** - Update to Alpine 3.11.
|
* **27.12.19:** - Update to Alpine 3.11.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ alpine-baselayout-3.2.0-r7
|
|||||||
alpine-keys-2.2-r0
|
alpine-keys-2.2-r0
|
||||||
alsa-lib-1.2.2-r0
|
alsa-lib-1.2.2-r0
|
||||||
aom-libs-1.0.0-r1
|
aom-libs-1.0.0-r1
|
||||||
apk-tools-2.10.6-r0
|
apk-tools-2.10.8-r0
|
||||||
bash-5.0.17-r0
|
bash-5.0.17-r0
|
||||||
brotli-libs-1.0.9-r1
|
brotli-libs-1.0.9-r1
|
||||||
bsd-compat-headers-0.7.2-r3
|
bsd-compat-headers-0.7.2-r3
|
||||||
@@ -11,7 +11,7 @@ bzip2-1.0.8-r1
|
|||||||
ca-certificates-20191127-r4
|
ca-certificates-20191127-r4
|
||||||
ca-certificates-bundle-20191127-r4
|
ca-certificates-bundle-20191127-r4
|
||||||
coreutils-8.32-r0
|
coreutils-8.32-r0
|
||||||
curl-7.77.0-r0
|
curl-7.78.0-r0
|
||||||
expat-2.2.9-r1
|
expat-2.2.9-r1
|
||||||
ffmpeg-4.3.1-r0
|
ffmpeg-4.3.1-r0
|
||||||
ffmpeg-libs-4.3.1-r0
|
ffmpeg-libs-4.3.1-r0
|
||||||
@@ -24,6 +24,8 @@ gmp-6.2.0-r0
|
|||||||
gnu-libiconv-1.15-r2
|
gnu-libiconv-1.15-r2
|
||||||
gnutls-3.6.15-r1
|
gnutls-3.6.15-r1
|
||||||
gzip-1.10-r0
|
gzip-1.10-r0
|
||||||
|
intel-gmmlib-20.1.1-r0
|
||||||
|
intel-media-driver-20.1.1-r0
|
||||||
lame-3.100-r0
|
lame-3.100-r0
|
||||||
libacl-2.2.53-r0
|
libacl-2.2.53-r0
|
||||||
libass-0.14.0-r0
|
libass-0.14.0-r0
|
||||||
@@ -31,8 +33,8 @@ libattr-2.4.48-r0
|
|||||||
libbsd-0.10.0-r0
|
libbsd-0.10.0-r0
|
||||||
libbz2-1.0.8-r1
|
libbz2-1.0.8-r1
|
||||||
libc-utils-0.7.2-r3
|
libc-utils-0.7.2-r3
|
||||||
libcrypto1.1-1.1.1k-r0
|
libcrypto1.1-1.1.1l-r0
|
||||||
libcurl-7.77.0-r0
|
libcurl-7.78.0-r0
|
||||||
libdav1d-0.7.0-r0
|
libdav1d-0.7.0-r0
|
||||||
libdrm-2.4.102-r0
|
libdrm-2.4.102-r0
|
||||||
libdvbcsa-1.1.0-r1
|
libdvbcsa-1.1.0-r1
|
||||||
@@ -51,7 +53,7 @@ libpciaccess-0.16-r0
|
|||||||
libpng-1.6.37-r1
|
libpng-1.6.37-r1
|
||||||
libproc-3.3.16-r0
|
libproc-3.3.16-r0
|
||||||
libssh-0.9.4-r1
|
libssh-0.9.4-r1
|
||||||
libssl1.1-1.1.1k-r0
|
libssl1.1-1.1.1l-r0
|
||||||
libstdc++-9.3.0-r2
|
libstdc++-9.3.0-r2
|
||||||
libtasn1-4.16.0-r1
|
libtasn1-4.16.0-r1
|
||||||
libtheora-1.1.1-r14
|
libtheora-1.1.1-r14
|
||||||
@@ -70,7 +72,7 @@ libxcb-1.14-r1
|
|||||||
libxdmcp-1.1.3-r0
|
libxdmcp-1.1.3-r0
|
||||||
libxext-1.3.4-r0
|
libxext-1.3.4-r0
|
||||||
libxfixes-5.0.3-r2
|
libxfixes-5.0.3-r2
|
||||||
libxml2-2.9.10-r6
|
libxml2-2.9.12-r0
|
||||||
libxshmfence-1.3-r1
|
libxshmfence-1.3-r1
|
||||||
libxslt-1.1.34-r0
|
libxslt-1.1.34-r0
|
||||||
linux-headers-5.4.5-r1
|
linux-headers-5.4.5-r1
|
||||||
@@ -89,7 +91,7 @@ ncurses-libs-6.2_p20200523-r0
|
|||||||
ncurses-terminfo-base-6.2_p20200523-r0
|
ncurses-terminfo-base-6.2_p20200523-r0
|
||||||
nettle-3.5.1-r1
|
nettle-3.5.1-r1
|
||||||
nghttp2-libs-1.41.0-r0
|
nghttp2-libs-1.41.0-r0
|
||||||
openssl-1.1.1k-r0
|
openssl-1.1.1l-r0
|
||||||
opus-1.3.1-r0
|
opus-1.3.1-r0
|
||||||
p11-kit-0.23.22-r0
|
p11-kit-0.23.22-r0
|
||||||
pcre2-10.35-r0
|
pcre2-10.35-r0
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ optional_block_1_items:
|
|||||||
#### Host vs. Bridge
|
#### Host vs. Bridge
|
||||||
|
|
||||||
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 to work with these services Tvheadend requires a multicast address of `239.255.255.250` and a UDP port of `1900` which at this time is not possible with docker bridge mode.
|
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 to work with these services Tvheadend requires a multicast address of `239.255.255.250` and a UDP port of `1900` which at this time is not possible with docker bridge mode.
|
||||||
If you have other host services which also use multicast such as SSDP/DLNA/Emby you may experience stabilty problems. These can be solved by giving tvheadend its own IP using macavlan.
|
If you have other host services which also use multicast such as SSDP/DLNA/Emby you may experience stabilty problems. These can be solved by giving tvheadend its own IP using macvlan.
|
||||||
|
|
||||||
# application setup block
|
# application setup block
|
||||||
app_setup_block_enabled: true
|
app_setup_block_enabled: true
|
||||||
@@ -126,6 +126,7 @@ app_setup_block: |
|
|||||||
|
|
||||||
# changelog
|
# changelog
|
||||||
changelogs:
|
changelogs:
|
||||||
|
- { date: "11.05.21:", desc: "Added Intel iHD driver support." }
|
||||||
- { date: "02.06.20:", desc: "Update to Alpine 3.12." }
|
- { date: "02.06.20:", desc: "Update to Alpine 3.12." }
|
||||||
- { date: "27.12.19:", desc: "Add requests and perl-json-xs package." }
|
- { date: "27.12.19:", desc: "Add requests and perl-json-xs package." }
|
||||||
- { date: "27.12.19:", desc: "Update to Alpine 3.11." }
|
- { date: "27.12.19:", desc: "Update to Alpine 3.11." }
|
||||||
|
|||||||
Reference in New Issue
Block a user