2023-02-26 12:03:38 UTC
102 MB
/config
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PS1$(whoami)@$(hostname):$(pwd)\$
S6_CMD_WAIT_FOR_SERVICES_MAXTIME0
S6_STAGE2_HOOK/docker-mods
S6_VERBOSITY1
TERMxterm
XDG_CONFIG_HOME/config
XDG_DATA_HOME/config
[#000] sha256:3992a43f6278e9e89a95b33725c57cafc74b5907060843f5864dc7e2fb240751 - 5.44% (5.55 MB)
[#001] sha256:665f8ff9770e0272412605a43112778f4ae555ae7394a3c1f2d32f9f92a64412 - 0.0% (3.22 KB)
[#002] sha256:e420ac00a00f5fa0963627723aae8be759b6209869d89da9dcb976c5b3b377ec - 5.28% (5.38 MB)
[#003] sha256:706418bbdf3dae30e7be094835283705a514a2aaaca7c36e3c72bc99e2f610cd - 0.0% (3.92 KB)
[#004] sha256:74cb67313c1534ae3a57b7b5d94be628f9e33d4530773ba63db0d3683df89bba - 89.28% (91.1 MB)
[#005] sha256:922b412bf17f20906310dfb2d91d4221014006396dcd20dc06f5a685e4e053ce - 0.0% (1.34 KB)
COPY /root-out/ / # buildkit
2023-02-21 06:34:03 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-02-21 06:34:03 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-02-21 06:34:03 UTC (buildkit.dockerfile.v0)ARG MODS_VERSION=v3
2023-02-21 06:34:03 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 5dd1ab6b-ls11 Build-date:- 2023-02-21T00:32:41-06:00
2023-02-21 06:34:03 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2023-02-21 06:34:03 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
2023-02-21 06:34:03 UTC (buildkit.dockerfile.v0)ENV PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_VERBOSITY=1 S6_STAGE2_HOOK=/docker-mods
2023-02-21 06:34:05 UTC (buildkit.dockerfile.v0)RUN |3 BUILD_DATE=2023-02-21T00:32:41-06:00 VERSION=5dd1ab6b-ls11 MODS_VERSION=v3 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache alpine-release bash ca-certificates coreutils curl jq procps shadow tzdata && echo "**** create abc user and make our folders ****" && groupmod -g 1000 users && useradd -u 911 -U -d /config -s /bin/false abc && usermod -G users abc && mkdir -p /app /config /defaults && echo "**** add qemu ****" && curl -o /usr/bin/qemu-arm-static -L "https://lsio-ci.ams3.digitaloceanspaces.com/qemu-arm-static" && chmod +x /usr/bin/qemu-arm-static && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit
2023-02-21 06:34:05 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-02-21 06:34:05 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2023-02-26 12:03:37 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-02-26 12:03:37 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-02-26 12:03:37 UTC (buildkit.dockerfile.v0)ARG QBITTORRENT_VERSION
2023-02-26 12:03:37 UTC (buildkit.dockerfile.v0)ARG QBT_VERSION
2023-02-26 12:03:37 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- release-4.5.1_v1.2.18-ls13 Build-date:- 2023-02-26T13:01:42+01:00
2023-02-26 12:03:37 UTC (buildkit.dockerfile.v0)LABEL maintainer=thespad
2023-02-26 12:03:37 UTC (buildkit.dockerfile.v0)ARG UNRAR_VERSION=6.1.7
2023-02-26 12:03:37 UTC (buildkit.dockerfile.v0)ENV HOME=/config XDG_CONFIG_HOME=/config XDG_DATA_HOME=/config
2023-02-26 12:03:37 UTC (buildkit.dockerfile.v0)RUN |5 BUILD_DATE=2023-02-26T13:01:42+01:00 VERSION=release-4.5.1_v1.2.18-ls13 QBITTORRENT_VERSION=release-4.5.1_v1.2.18 QBT_VERSION= UNRAR_VERSION=6.1.7 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache --upgrade --virtual=build-dependencies build-base && echo "**** install packages ****" && apk add -U --update --no-cache icu-libs openssl1.1-compat p7zip python3 qt6-qtbase-sqlite && echo "**** install unrar from source ****" && mkdir /tmp/unrar && curl -o /tmp/unrar.tar.gz -L "https://www.rarlab.com/rar/unrarsrc-${UNRAR_VERSION}.tar.gz" && tar xf /tmp/unrar.tar.gz -C /tmp/unrar --strip-components=1 && cd /tmp/unrar && make && install -v -m755 unrar /usr/bin && echo "**** install qbittorrent ****" && if [ -z ${QBITTORRENT_VERSION+x} ]; then QBITTORRENT_VERSION=$(curl -sL "https://api.github.com/repos/userdocs/qbittorrent-nox-static/releases" | jq -r 'first(.[] | select(.prerelease == true) | .tag_name)'); fi && curl -o /app/qbittorrent-nox -L "https://github.com/userdocs/qbittorrent-nox-static/releases/download/${QBITTORRENT_VERSION}/armv7-qbittorrent-nox" && chmod +x /app/qbittorrent-nox && echo "***** install qbitorrent-cli ****" && mkdir /qbt && QBT_VERSION=$(curl -sL "https://api.github.com/repos/fedarovich/qbittorrent-cli/releases" | awk '/tag_name/{print $4;exit}' FS='[""]'); curl -o /tmp/qbt.tar.gz -L "https://github.com/fedarovich/qbittorrent-cli/releases/download/${QBT_VERSION}/qbt-linux-alpine-arm-${QBT_VERSION:1}.tar.gz" && tar xf /tmp/qbt.tar.gz -C /qbt && echo "**** cleanup ****" && apk del --purge build-dependencies && rm -rf /root/.cache /tmp/* # buildkit
2023-02-26 12:03:38 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-02-26 12:03:38 UTC (buildkit.dockerfile.v0)EXPOSE map[6881/tcp:{} 6881/udp:{} 8080/tcp:{}]
2023-02-26 12:03:38 UTC (buildkit.dockerfile.v0)VOLUME [/config]
Please be careful as this will not just delete the reference but also the actual content!
For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.