Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
9fdb4a4894
8 changed files with 172 additions and 176 deletions
2
.github/workflows/permissions.yml
vendored
2
.github/workflows/permissions.yml
vendored
|
|
@ -5,6 +5,8 @@ on:
|
||||||
- '**/run'
|
- '**/run'
|
||||||
- '**/finish'
|
- '**/finish'
|
||||||
- '**/check'
|
- '**/check'
|
||||||
|
- 'root/migrations/*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
permission_check:
|
permission_check:
|
||||||
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1
|
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
FROM ghcr.io/linuxserver/unrar:latest as unrar
|
FROM ghcr.io/linuxserver/unrar:latest AS unrar
|
||||||
|
|
||||||
FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy
|
FROM ghcr.io/linuxserver/baseimage-ubuntu:noble
|
||||||
|
|
||||||
# set version label
|
# set version label
|
||||||
ARG BUILD_DATE
|
ARG BUILD_DATE
|
||||||
|
|
@ -29,7 +29,6 @@ RUN \
|
||||||
echo "**** install runtime packages & wireguard ****" && \
|
echo "**** install runtime packages & wireguard ****" && \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
jq \
|
|
||||||
udev \
|
udev \
|
||||||
wget \
|
wget \
|
||||||
iproute2 \
|
iproute2 \
|
||||||
|
|
@ -37,7 +36,7 @@ RUN \
|
||||||
echo "**** install plex ****" && \
|
echo "**** install plex ****" && \
|
||||||
if [ -z ${PLEX_RELEASE+x} ]; then \
|
if [ -z ${PLEX_RELEASE+x} ]; then \
|
||||||
PLEX_RELEASE=$(curl -sX GET 'https://plex.tv/api/downloads/5.json' \
|
PLEX_RELEASE=$(curl -sX GET 'https://plex.tv/api/downloads/5.json' \
|
||||||
| jq -r '.computer.Linux.version'); \
|
| jq -r '.computer.Linux.version'); \
|
||||||
fi && \
|
fi && \
|
||||||
curl -o \
|
curl -o \
|
||||||
/tmp/plexmediaserver.deb -L \
|
/tmp/plexmediaserver.deb -L \
|
||||||
|
|
@ -45,6 +44,7 @@ RUN \
|
||||||
dpkg -i /tmp/plexmediaserver.deb && \
|
dpkg -i /tmp/plexmediaserver.deb && \
|
||||||
echo "**** ensure abc user's home folder is /app ****" && \
|
echo "**** ensure abc user's home folder is /app ****" && \
|
||||||
usermod -d /app abc && \
|
usermod -d /app abc && \
|
||||||
|
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
|
||||||
echo "**** cleanup ****" && \
|
echo "**** cleanup ****" && \
|
||||||
apt-get clean && \
|
apt-get clean && \
|
||||||
rm -rf \
|
rm -rf \
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
FROM ghcr.io/linuxserver/unrar:arm64v8-latest as unrar
|
FROM ghcr.io/linuxserver/unrar:arm64v8-latest AS unrar
|
||||||
|
|
||||||
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy
|
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-noble
|
||||||
|
|
||||||
# set version label
|
# set version label
|
||||||
ARG BUILD_DATE
|
ARG BUILD_DATE
|
||||||
|
|
@ -26,14 +26,12 @@ RUN \
|
||||||
echo "**** install runtime packages ****" && \
|
echo "**** install runtime packages ****" && \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
jq \
|
|
||||||
udev \
|
udev \
|
||||||
unrar \
|
|
||||||
wget && \
|
wget && \
|
||||||
echo "**** install plex ****" && \
|
echo "**** install plex ****" && \
|
||||||
if [ -z ${PLEX_RELEASE+x} ]; then \
|
if [ -z ${PLEX_RELEASE+x} ]; then \
|
||||||
PLEX_RELEASE=$(curl -sX GET 'https://plex.tv/api/downloads/5.json' \
|
PLEX_RELEASE=$(curl -sX GET 'https://plex.tv/api/downloads/5.json' \
|
||||||
| jq -r '.computer.Linux.version'); \
|
| jq -r '.computer.Linux.version'); \
|
||||||
fi && \
|
fi && \
|
||||||
curl -o \
|
curl -o \
|
||||||
/tmp/plexmediaserver.deb -L \
|
/tmp/plexmediaserver.deb -L \
|
||||||
|
|
@ -41,6 +39,7 @@ RUN \
|
||||||
dpkg -i /tmp/plexmediaserver.deb && \
|
dpkg -i /tmp/plexmediaserver.deb && \
|
||||||
echo "**** ensure abc user's home folder is /app ****" && \
|
echo "**** ensure abc user's home folder is /app ****" && \
|
||||||
usermod -d /app abc && \
|
usermod -d /app abc && \
|
||||||
|
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
|
||||||
echo "**** cleanup ****" && \
|
echo "**** cleanup ****" && \
|
||||||
apt-get clean && \
|
apt-get clean && \
|
||||||
rm -rf \
|
rm -rf \
|
||||||
|
|
|
||||||
16
Jenkinsfile
vendored
16
Jenkinsfile
vendored
|
|
@ -33,8 +33,8 @@ pipeline {
|
||||||
CI_PORT='32400'
|
CI_PORT='32400'
|
||||||
CI_SSL='false'
|
CI_SSL='false'
|
||||||
CI_DELAY='120'
|
CI_DELAY='120'
|
||||||
CI_DOCKERENV='TZ=US/Pacific'
|
CI_DOCKERENV=''
|
||||||
CI_AUTH='user:password'
|
CI_AUTH=''
|
||||||
CI_WEBPATH='/web/index.html'
|
CI_WEBPATH='/web/index.html'
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
|
|
@ -247,7 +247,7 @@ pipeline {
|
||||||
-v ${WORKSPACE}:/mnt \
|
-v ${WORKSPACE}:/mnt \
|
||||||
-e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \
|
-e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \
|
||||||
-e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \
|
-e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \
|
||||||
ghcr.io/linuxserver/baseimage-alpine:3.19 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\
|
ghcr.io/linuxserver/baseimage-alpine:3.20 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\
|
||||||
apk add --no-cache python3 && \
|
apk add --no-cache python3 && \
|
||||||
python3 -m venv /lsiopy && \
|
python3 -m venv /lsiopy && \
|
||||||
pip install --no-cache-dir -U pip && \
|
pip install --no-cache-dir -U pip && \
|
||||||
|
|
@ -354,7 +354,7 @@ pipeline {
|
||||||
fi
|
fi
|
||||||
echo "Starting Stage 4 - External repo updates: Docs, Unraid Template and Readme Sync to Docker Hub"
|
echo "Starting Stage 4 - External repo updates: Docs, Unraid Template and Readme Sync to Docker Hub"
|
||||||
mkdir -p ${TEMPDIR}/docs
|
mkdir -p ${TEMPDIR}/docs
|
||||||
git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation
|
git clone --depth=1 https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation
|
||||||
if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then
|
if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then
|
||||||
cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/
|
cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/
|
||||||
cd ${TEMPDIR}/docs/docker-documentation
|
cd ${TEMPDIR}/docs/docker-documentation
|
||||||
|
|
@ -372,8 +372,8 @@ pipeline {
|
||||||
echo "Docs update not needed, skipping"
|
echo "Docs update not needed, skipping"
|
||||||
fi
|
fi
|
||||||
mkdir -p ${TEMPDIR}/unraid
|
mkdir -p ${TEMPDIR}/unraid
|
||||||
git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates
|
git clone --depth=1 https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates
|
||||||
git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates
|
git clone --depth=1 https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates
|
||||||
if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then
|
if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then
|
||||||
sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml
|
sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml
|
||||||
elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then
|
elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then
|
||||||
|
|
@ -705,7 +705,7 @@ pipeline {
|
||||||
set -e
|
set -e
|
||||||
docker pull ghcr.io/linuxserver/ci:latest
|
docker pull ghcr.io/linuxserver/ci:latest
|
||||||
if [ "${MULTIARCH}" == "true" ]; then
|
if [ "${MULTIARCH}" == "true" ]; then
|
||||||
docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}
|
docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64
|
||||||
docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
|
docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
|
||||||
fi
|
fi
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
|
|
@ -796,7 +796,7 @@ pipeline {
|
||||||
echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin
|
echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin
|
||||||
echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin
|
echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin
|
||||||
if [ "${CI}" == "false" ]; then
|
if [ "${CI}" == "false" ]; then
|
||||||
docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}
|
docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64
|
||||||
docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
|
docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
|
||||||
fi
|
fi
|
||||||
for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do
|
for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do
|
||||||
|
|
|
||||||
|
|
@ -133,7 +133,7 @@ services:
|
||||||
- VERSION=docker
|
- VERSION=docker
|
||||||
- PLEX_CLAIM= #optional
|
- PLEX_CLAIM= #optional
|
||||||
volumes:
|
volumes:
|
||||||
- /path/to/library:/config
|
- /path/to/plex/library:/config
|
||||||
- /path/to/tvseries:/tv
|
- /path/to/tvseries:/tv
|
||||||
- /path/to/movies:/movies
|
- /path/to/movies:/movies
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
@ -150,7 +150,7 @@ docker run -d \
|
||||||
-e TZ=Etc/UTC \
|
-e TZ=Etc/UTC \
|
||||||
-e VERSION=docker \
|
-e VERSION=docker \
|
||||||
-e PLEX_CLAIM= `#optional` \
|
-e PLEX_CLAIM= `#optional` \
|
||||||
-v /path/to/library:/config \
|
-v /path/to/plex/library:/config \
|
||||||
-v /path/to/tvseries:/tv \
|
-v /path/to/tvseries:/tv \
|
||||||
-v /path/to/movies:/movies \
|
-v /path/to/movies:/movies \
|
||||||
--restart unless-stopped \
|
--restart unless-stopped \
|
||||||
|
|
@ -361,6 +361,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
* **18.07.24:** - Rebase to Ubuntu Noble.
|
||||||
* **12.02.24:** - Use universal hardware acceleration blurb
|
* **12.02.24:** - Use universal hardware acceleration blurb
|
||||||
* **09.01.24:** - Set ownership on TranscoderTempDirectory when it's been saved in Preferences.
|
* **09.01.24:** - Set ownership on TranscoderTempDirectory when it's been saved in Preferences.
|
||||||
* **16.08.23:** - Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar).
|
* **16.08.23:** - Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar).
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,6 @@ repo_vars:
|
||||||
- CI_PORT='32400'
|
- CI_PORT='32400'
|
||||||
- CI_SSL='false'
|
- CI_SSL='false'
|
||||||
- CI_DELAY='120'
|
- CI_DELAY='120'
|
||||||
- CI_DOCKERENV='TZ=US/Pacific'
|
- CI_DOCKERENV=''
|
||||||
- CI_AUTH='user:password'
|
- CI_AUTH=''
|
||||||
- CI_WEBPATH='/web/index.html'
|
- CI_WEBPATH='/web/index.html'
|
||||||
|
|
|
||||||
|
|
@ -1,151 +1,147 @@
|
||||||
NAME VERSION TYPE
|
NAME VERSION TYPE
|
||||||
adduser 3.118ubuntu5 deb
|
adduser 3.137ubuntu1 deb
|
||||||
apt 2.4.12 deb
|
apt 2.7.14build2 deb
|
||||||
apt-utils 2.4.12 deb
|
apt-utils 2.7.14build2 deb
|
||||||
base-files 12ubuntu4.6 deb
|
base-files 13ubuntu10 deb
|
||||||
base-passwd 3.5.52build1 deb
|
base-passwd 3.6.3build1 deb
|
||||||
bash 5.1-6ubuntu1.1 deb
|
bash 5.2.21-2ubuntu4 deb
|
||||||
bsdutils 1:2.37.2-4ubuntu3.4 deb
|
bsdutils 1:2.39.3-9ubuntu6 deb
|
||||||
ca-certificates 20230311ubuntu0.22.04.1 deb
|
ca-certificates 20240203 deb
|
||||||
catatonit 0.1.7-1 deb
|
catatonit 0.1.7-1 deb
|
||||||
coreutils 8.32-4.1ubuntu1.2 deb
|
coreutils 9.4-3ubuntu6 deb
|
||||||
cron 3.0pl1-137ubuntu3 deb
|
cron 3.0pl1-184ubuntu2 deb
|
||||||
curl 7.81.0-1ubuntu1.16 deb
|
cron-daemon-common 3.0pl1-184ubuntu2 deb
|
||||||
dash 0.5.11+git20210903+057cd650a4ed-3build1 deb
|
curl 8.5.0-2ubuntu10.2 deb
|
||||||
debconf 1.5.79ubuntu1 deb
|
dash 0.5.12-6ubuntu5 deb
|
||||||
debianutils 5.5-1ubuntu2 deb
|
debconf 1.5.86ubuntu1 deb
|
||||||
diffutils 1:3.8-0ubuntu2 deb
|
debianutils 5.17build1 deb
|
||||||
dirmngr 2.2.27-3ubuntu2.1 deb
|
diffutils 1:3.10-1build1 deb
|
||||||
dpkg 1.21.1ubuntu2.3 deb
|
dirmngr 2.4.4-2ubuntu17 deb
|
||||||
e2fsprogs 1.46.5-2ubuntu1.1 deb
|
dpkg 1.22.6ubuntu6 deb
|
||||||
findutils 4.8.0-1ubuntu3 deb
|
e2fsprogs 1.47.0-2.4~exp1ubuntu4 deb
|
||||||
gcc-12-base 12.3.0-1ubuntu1~22.04 deb
|
findutils 4.9.0-5build1 deb
|
||||||
gnupg 2.2.27-3ubuntu2.1 deb
|
gcc-14-base 14-20240412-0ubuntu1 deb
|
||||||
gnupg-l10n 2.2.27-3ubuntu2.1 deb
|
gnupg 2.4.4-2ubuntu17 deb
|
||||||
gnupg-utils 2.2.27-3ubuntu2.1 deb
|
gnupg-l10n 2.4.4-2ubuntu17 deb
|
||||||
gpg 2.2.27-3ubuntu2.1 deb
|
gnupg-utils 2.4.4-2ubuntu17 deb
|
||||||
gpg-agent 2.2.27-3ubuntu2.1 deb
|
gpg 2.4.4-2ubuntu17 deb
|
||||||
gpg-wks-client 2.2.27-3ubuntu2.1 deb
|
gpg-agent 2.4.4-2ubuntu17 deb
|
||||||
gpg-wks-server 2.2.27-3ubuntu2.1 deb
|
gpg-wks-client 2.4.4-2ubuntu17 deb
|
||||||
gpgconf 2.2.27-3ubuntu2.1 deb
|
gpgconf 2.4.4-2ubuntu17 deb
|
||||||
gpgsm 2.2.27-3ubuntu2.1 deb
|
gpgsm 2.4.4-2ubuntu17 deb
|
||||||
gpgv 2.2.27-3ubuntu2.1 deb
|
gpgv 2.4.4-2ubuntu17 deb
|
||||||
grep 3.7-1build1 deb
|
grep 3.11-4build1 deb
|
||||||
gzip 1.10-4ubuntu4.1 deb
|
gzip 1.12-1ubuntu3 deb
|
||||||
hostname 3.23ubuntu2 deb
|
hostname 3.23+nmu2ubuntu2 deb
|
||||||
init-system-helpers 1.62 deb
|
init-system-helpers 1.66ubuntu1 deb
|
||||||
jq 1.6-2.1ubuntu3 deb
|
jq 1.7.1-3build1 deb
|
||||||
libacl1 2.3.1-1 deb
|
keyboxd 2.4.4-2ubuntu17 deb
|
||||||
libapt-pkg6.0 2.4.12 deb
|
krb5-locales 1.20.1-6ubuntu2 deb
|
||||||
libassuan0 2.5.5-1build1 deb
|
libacl1 2.3.2-1build1 deb
|
||||||
libattr1 1:2.5.1-1build1 deb
|
libapt-pkg6.0t64 2.7.14build2 deb
|
||||||
libaudit-common 1:3.0.7-1build1 deb
|
libassuan0 2.5.6-1build1 deb
|
||||||
libaudit1 1:3.0.7-1build1 deb
|
libattr1 1:2.5.2-1build1 deb
|
||||||
libblkid1 2.37.2-4ubuntu3.4 deb
|
libaudit-common 1:3.1.2-2.1build1 deb
|
||||||
libbrotli1 1.0.9-2build6 deb
|
libaudit1 1:3.1.2-2.1build1 deb
|
||||||
libbsd0 0.11.5-1 deb
|
libblkid1 2.39.3-9ubuntu6 deb
|
||||||
libbz2-1.0 1.0.8-5build1 deb
|
libbrotli1 1.1.0-2build2 deb
|
||||||
libc-bin 2.35-0ubuntu3.8 deb
|
libbsd0 0.12.1-1build1 deb
|
||||||
libc6 2.35-0ubuntu3.8 deb
|
libbz2-1.0 1.0.8-5.1 deb
|
||||||
libcap-ng0 0.7.9-2.2build3 deb
|
libc-bin 2.39-0ubuntu8.2 deb
|
||||||
libcap2 1:2.44-1ubuntu0.22.04.1 deb
|
libc6 2.39-0ubuntu8.2 deb
|
||||||
libcom-err2 1.46.5-2ubuntu1.1 deb
|
libcap-ng0 0.8.4-2build2 deb
|
||||||
libcrypt1 1:4.4.27-1 deb
|
libcap2 1:2.66-5ubuntu2 deb
|
||||||
libcurl4 7.81.0-1ubuntu1.16 deb
|
libcom-err2 1.47.0-2.4~exp1ubuntu4 deb
|
||||||
libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb
|
libcrypt1 1:4.4.36-4build1 deb
|
||||||
libdebconfclient0 0.261ubuntu1 deb
|
libcurl4t64 8.5.0-2ubuntu10.2 deb
|
||||||
libext2fs2 1.46.5-2ubuntu1.1 deb
|
libdb5.3t64 5.3.28+dfsg2-7 deb
|
||||||
libffi8 3.4.2-4 deb
|
libdebconfclient0 0.271ubuntu3 deb
|
||||||
libgcc-s1 12.3.0-1ubuntu1~22.04 deb
|
libext2fs2t64 1.47.0-2.4~exp1ubuntu4 deb
|
||||||
libgcrypt20 1.9.4-3ubuntu3 deb
|
libffi8 3.4.6-1build1 deb
|
||||||
libgmp10 2:6.2.1+dfsg-3ubuntu1 deb
|
libgcc-s1 14-20240412-0ubuntu1 deb
|
||||||
libgnutls30 3.7.3-4ubuntu1.5 deb
|
libgcrypt20 1.10.3-2build1 deb
|
||||||
libgpg-error0 1.43-3 deb
|
libgmp10 2:6.3.0+dfsg-2ubuntu6 deb
|
||||||
libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb
|
libgnutls30t64 3.8.3-1.1ubuntu3.1 deb
|
||||||
libhogweed6 3.7.3-1build2 deb
|
libgpg-error0 1.47-3build2 deb
|
||||||
libidn2-0 2.3.2-2build1 deb
|
libgssapi-krb5-2 1.20.1-6ubuntu2 deb
|
||||||
libjq1 1.6-2.1ubuntu3 deb
|
libhogweed6t64 3.9.1-2.2build1 deb
|
||||||
libk5crypto3 1.19.2-2ubuntu0.3 deb
|
libidn2-0 2.3.7-2build1 deb
|
||||||
libkeyutils1 1.6.1-2ubuntu3 deb
|
libjq1 1.7.1-3build1 deb
|
||||||
libkmod2 29-1ubuntu1 deb
|
libk5crypto3 1.20.1-6ubuntu2 deb
|
||||||
libkrb5-3 1.19.2-2ubuntu0.3 deb
|
libkeyutils1 1.6.3-3build1 deb
|
||||||
libkrb5support0 1.19.2-2ubuntu0.3 deb
|
libkmod2 31+20240202-2ubuntu7 deb
|
||||||
libksba8 1.6.0-2ubuntu0.2 deb
|
libkrb5-3 1.20.1-6ubuntu2 deb
|
||||||
libldap-2.5-0 2.5.17+dfsg-0ubuntu0.22.04.1 deb
|
libkrb5support0 1.20.1-6ubuntu2 deb
|
||||||
libldap-common 2.5.17+dfsg-0ubuntu0.22.04.1 deb
|
libksba8 1.6.6-1build1 deb
|
||||||
liblz4-1 1.9.3-2build2 deb
|
libldap-common 2.6.7+dfsg-1~exp1ubuntu8 deb
|
||||||
liblzma5 5.2.5-2ubuntu1 deb
|
libldap2 2.6.7+dfsg-1~exp1ubuntu8 deb
|
||||||
libmd0 1.0.4-1build1 deb
|
liblz4-1 1.9.4-1build1 deb
|
||||||
libmount1 2.37.2-4ubuntu3.4 deb
|
liblzma5 5.6.1+really5.4.5-1 deb
|
||||||
libncurses6 6.3-2ubuntu0.1 deb
|
libmd0 1.1.0-2build1 deb
|
||||||
libncursesw6 6.3-2ubuntu0.1 deb
|
libmount1 2.39.3-9ubuntu6 deb
|
||||||
libnettle8 3.7.3-1build2 deb
|
libncursesw6 6.4+20240113-1ubuntu2 deb
|
||||||
libnghttp2-14 1.43.0-1ubuntu0.2 deb
|
libnettle8t64 3.9.1-2.2build1 deb
|
||||||
libnpth0 1.6-3build2 deb
|
libnghttp2-14 1.59.0-1ubuntu0.1 deb
|
||||||
libnsl2 1.3.0-2build2 deb
|
libnpth0t64 1.6-3.1build1 deb
|
||||||
libonig5 6.9.7.1-2build1 deb
|
libonig5 6.9.9-1build1 deb
|
||||||
libp11-kit0 0.24.0-6build1 deb
|
libp11-kit0 0.25.3-4ubuntu2 deb
|
||||||
libpam-modules 1.4.0-11ubuntu2.4 deb
|
libpam-modules 1.5.3-5ubuntu5.1 deb
|
||||||
libpam-modules-bin 1.4.0-11ubuntu2.4 deb
|
libpam-modules-bin 1.5.3-5ubuntu5.1 deb
|
||||||
libpam-runtime 1.4.0-11ubuntu2.4 deb
|
libpam-runtime 1.5.3-5ubuntu5.1 deb
|
||||||
libpam0g 1.4.0-11ubuntu2.4 deb
|
libpam0g 1.5.3-5ubuntu5.1 deb
|
||||||
libpcre2-8-0 10.39-3ubuntu0.1 deb
|
libpcre2-8-0 10.42-4ubuntu2 deb
|
||||||
libpcre3 2:8.39-13ubuntu0.22.04.1 deb
|
libproc2-0 2:4.0.4-4ubuntu3 deb
|
||||||
libprocps8 2:3.3.17-6ubuntu2.1 deb
|
libpsl5t64 0.21.2-1.1build1 deb
|
||||||
libpsl5 0.21.0-1.2build2 deb
|
libreadline8t64 8.2-4build1 deb
|
||||||
libreadline8 8.1.2-1 deb
|
librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb
|
||||||
librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb
|
libsasl2-2 2.1.28+dfsg1-5ubuntu3 deb
|
||||||
libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb
|
libsasl2-modules 2.1.28+dfsg1-5ubuntu3 deb
|
||||||
libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb
|
libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3 deb
|
||||||
libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb
|
libseccomp2 2.5.5-1ubuntu3 deb
|
||||||
libseccomp2 2.5.3-2ubuntu2 deb
|
libselinux1 3.5-2ubuntu2 deb
|
||||||
libselinux1 3.3-1build2 deb
|
libsemanage-common 3.5-1build5 deb
|
||||||
libsemanage-common 3.3-1build2 deb
|
libsemanage2 3.5-1build5 deb
|
||||||
libsemanage2 3.3-1build2 deb
|
libsepol2 3.5-2build1 deb
|
||||||
libsepol2 3.3-1build1 deb
|
libsmartcols1 2.39.3-9ubuntu6 deb
|
||||||
libsmartcols1 2.37.2-4ubuntu3.4 deb
|
libsqlite3-0 3.45.1-1ubuntu2 deb
|
||||||
libsqlite3-0 3.37.2-2ubuntu0.3 deb
|
libss2 1.47.0-2.4~exp1ubuntu4 deb
|
||||||
libss2 1.46.5-2ubuntu1.1 deb
|
libssh-4 0.10.6-2build2 deb
|
||||||
libssh-4 0.9.6-2ubuntu0.22.04.3 deb
|
libssl3t64 3.0.13-0ubuntu3.2 deb
|
||||||
libssl3 3.0.2-0ubuntu1.15 deb
|
libstdc++6 14-20240412-0ubuntu1 deb
|
||||||
libstdc++6 12.3.0-1ubuntu1~22.04 deb
|
libsystemd0 255.4-1ubuntu8.2 deb
|
||||||
libsystemd0 249.11-0ubuntu3.12 deb
|
libtasn1-6 4.19.0-3build1 deb
|
||||||
libtasn1-6 4.18.0-4build1 deb
|
libtinfo6 6.4+20240113-1ubuntu2 deb
|
||||||
libtinfo6 6.3-2ubuntu0.1 deb
|
libudev1 255.4-1ubuntu8.2 deb
|
||||||
libtirpc-common 1.3.2-2ubuntu0.1 deb
|
libunistring5 1.1-2build1 deb
|
||||||
libtirpc3 1.3.2-2ubuntu0.1 deb
|
libuuid1 2.39.3-9ubuntu6 deb
|
||||||
libudev1 249.11-0ubuntu3.12 deb
|
libxxhash0 0.8.2-2build1 deb
|
||||||
libunistring2 1.0-1 deb
|
libzstd1 1.5.5+dfsg2-2build1 deb
|
||||||
libuuid1 2.37.2-4ubuntu3.4 deb
|
locales 2.39-0ubuntu8.2 deb
|
||||||
libxxhash0 0.8.1-1 deb
|
login 1:4.13+dfsg1-4ubuntu3 deb
|
||||||
libzstd1 1.4.8+dfsg-3build1 deb
|
logsave 1.47.0-2.4~exp1ubuntu4 deb
|
||||||
locales 2.35-0ubuntu3.8 deb
|
mawk 1.3.4.20240123-1build1 deb
|
||||||
login 1:4.8.1-2ubuntu2.2 deb
|
mount 2.39.3-9ubuntu6 deb
|
||||||
logsave 1.46.5-2ubuntu1.1 deb
|
ncurses-base 6.4+20240113-1ubuntu2 deb
|
||||||
lsb-base 11.1.0ubuntu4 deb
|
ncurses-bin 6.4+20240113-1ubuntu2 deb
|
||||||
mawk 1.3.4.20200120-3 deb
|
netcat-openbsd 1.226-1ubuntu2 deb
|
||||||
mount 2.37.2-4ubuntu3.4 deb
|
openssl 3.0.13-0ubuntu3.2 deb
|
||||||
ncurses-base 6.3-2ubuntu0.1 deb
|
passwd 1:4.13+dfsg1-4ubuntu3 deb
|
||||||
ncurses-bin 6.3-2ubuntu0.1 deb
|
perl-base 5.38.2-3.2build2 deb
|
||||||
netcat 1.218-4ubuntu1 deb
|
pinentry-curses 1.2.1-3ubuntu5 deb
|
||||||
netcat-openbsd 1.218-4ubuntu1 deb
|
plexmediaserver 1.40.4.8679-424562606 deb
|
||||||
openssl 3.0.2-0ubuntu1.15 deb
|
procps 2:4.0.4-4ubuntu3 deb
|
||||||
passwd 1:4.8.1-2ubuntu2.2 deb
|
publicsuffix 20231001.0357-0.1 deb
|
||||||
perl-base 5.34.0-3ubuntu1.3 deb
|
readline-common 8.2-4build1 deb
|
||||||
pinentry-curses 1.1.1-1build2 deb
|
sed 4.9-2build1 deb
|
||||||
plexmediaserver 1.40.3.8555-fef15d30c deb
|
sensible-utils 0.0.22 deb
|
||||||
procps 2:3.3.17-6ubuntu2.1 deb
|
systemd-dev 255.4-1ubuntu8.2 deb
|
||||||
publicsuffix 20211207.1025-1 deb
|
systemd-hwe-hwdb 255.1.3 deb
|
||||||
readline-common 8.1.2-1 deb
|
systemd-standalone-sysusers 255.4-1ubuntu8.2 deb
|
||||||
sed 4.8-1ubuntu2 deb
|
sysvinit-utils 3.08-6ubuntu3 deb
|
||||||
sensible-utils 0.0.17 deb
|
tar 1.35+dfsg-3build1 deb
|
||||||
systemd-hwe-hwdb 249.11.5 deb
|
tzdata 2024a-3ubuntu1.1 deb
|
||||||
sysvinit-utils 3.01-1ubuntu1 deb
|
ubuntu-keyring 2023.11.28.1 deb
|
||||||
tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb
|
udev 255.4-1ubuntu8.2 deb
|
||||||
tzdata 2024a-0ubuntu0.22.04 deb
|
util-linux 2.39.3-9ubuntu6 deb
|
||||||
ubuntu-keyring 2021.03.26 deb
|
wget 1.21.4-1ubuntu4.1 deb
|
||||||
udev 249.11-0ubuntu3.12 deb
|
zlib1g 1:1.3.dfsg-3.1ubuntu2 deb
|
||||||
usrmerge 25ubuntu2 deb
|
|
||||||
util-linux 2.37.2-4ubuntu3.4 deb
|
|
||||||
wget 1.21.2-2ubuntu1 deb
|
|
||||||
zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb
|
|
||||||
|
|
|
||||||
|
|
@ -10,17 +10,14 @@ project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_
|
||||||
available_architectures:
|
available_architectures:
|
||||||
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
||||||
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
|
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
|
||||||
# development version
|
|
||||||
development_versions: false
|
|
||||||
# container parameters
|
# container parameters
|
||||||
common_param_env_vars_enabled: true #PGID, PUID, etc
|
common_param_env_vars_enabled: true #PGID, PUID, etc
|
||||||
param_container_name: "{{ project_name }}"
|
param_container_name: "{{ project_name }}"
|
||||||
param_usage_include_vols: true
|
param_usage_include_vols: true
|
||||||
param_volumes:
|
param_volumes:
|
||||||
- {vol_path: "/config", vol_host_path: "/path/to/library", desc: "Plex library location. *This can grow very large, 50gb+ is likely for a large collection.*"}
|
- {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/library", desc: "Plex library location. *This can grow very large, 50gb+ is likely for a large collection.*"}
|
||||||
- {vol_path: "/tv", vol_host_path: "/path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc."}
|
- {vol_path: "/tv", vol_host_path: "/path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc."}
|
||||||
- {vol_path: "/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc."}
|
- {vol_path: "/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc."}
|
||||||
param_usage_include_ports: false
|
|
||||||
param_usage_include_net: true
|
param_usage_include_net: true
|
||||||
param_net: "host"
|
param_net: "host"
|
||||||
param_net_desc: "Use Host Networking"
|
param_net_desc: "Use Host Networking"
|
||||||
|
|
@ -77,6 +74,7 @@ app_setup_block: |
|
||||||
readme_hwaccel: true
|
readme_hwaccel: true
|
||||||
# changelog
|
# changelog
|
||||||
changelogs:
|
changelogs:
|
||||||
|
- {date: "18.07.24:", desc: "Rebase to Ubuntu Noble."}
|
||||||
- {date: "12.02.24:", desc: "Use universal hardware acceleration blurb"}
|
- {date: "12.02.24:", desc: "Use universal hardware acceleration blurb"}
|
||||||
- {date: "09.01.24:", desc: "Set ownership on TranscoderTempDirectory when it's been saved in Preferences."}
|
- {date: "09.01.24:", desc: "Set ownership on TranscoderTempDirectory when it's been saved in Preferences."}
|
||||||
- {date: "16.08.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar)."}
|
- {date: "16.08.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar)."}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue