2022-12-15 03:38:08 UTC
42.8 MB
/root
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
[#000] sha256:90a6ca3bdda355cbe3c815946c1f7ccf5dd3faa08bc2f9eafdcebbfe354d359c - 12.46% (5.33 MB)
[#001] sha256:cbba887b254078c8f71db7ca3540ca7514ef9a304f3af37dfdd6f3390ec41f15 - 0.01% (3.16 KB)
[#002] sha256:48658537ef2220f2ae887dddf95c18cb26142db0124b8021a58b38ba0d98422a - 13.42% (5.74 MB)
[#003] sha256:80edfbc17799c426ac92b3d714a91eece08ef1a1d36a02872800266f52e997c5 - 0.01% (4.47 KB)
[#004] sha256:06497ab3cad81a071cb944cfddfa8097b6ee683459d088cee8b68e1342720a39 - 74.1% (31.7 MB)
[#005] sha256:a57a85736f9000a49ede084f2dac1fe40039e3ee836c700be21f87139ebc5b40 - 0.01% (2.45 KB)
COPY /root-out/ / # buildkit
2022-11-29 06:38:26 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2022-11-29 06:38:26 UTC (buildkit.dockerfile.v0)ARG VERSION
2022-11-29 06:38:26 UTC (buildkit.dockerfile.v0)ARG MODS_VERSION=v3
2022-11-29 06:38:26 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 16c25840-ls33 Build-date:- 2022-11-29T00:37:07-06:00
2022-11-29 06:38:26 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2022-11-29 06:38:26 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
2022-11-29 06:38:26 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
2022-11-29 06:38:29 UTC (buildkit.dockerfile.v0)RUN |3 BUILD_DATE=2022-11-29T00:37:07-06:00 VERSION=16c25840-ls33 MODS_VERSION=v3 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache 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-aarch64-static -L "https://lsio-ci.ams3.digitaloceanspaces.com/qemu-aarch64-static" && chmod +x /usr/bin/qemu-aarch64-static && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit
2022-11-29 06:38:29 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2022-11-29 06:38:29 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2022-12-15 03:38:08 UTC (buildkit.dockerfile.v0)ARG UNRAR_VERSION=6.1.7
2022-12-15 03:38:08 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2022-12-15 03:38:08 UTC (buildkit.dockerfile.v0)ARG VERSION
2022-12-15 03:38:08 UTC (buildkit.dockerfile.v0)ARG TRANSMISSION_VERSION
2022-12-15 03:38:08 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 3.00-r6-ls146 Build-date:- 2022-12-15T04:36:34+01:00
2022-12-15 03:38:08 UTC (buildkit.dockerfile.v0)LABEL maintainer=aptalca
2022-12-15 03:38:08 UTC (buildkit.dockerfile.v0)RUN |4 UNRAR_VERSION=6.1.7 BUILD_DATE=2022-12-15T04:36:34+01:00 VERSION=3.00-r6-ls146 TRANSMISSION_VERSION=3.00-r6 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache --upgrade --virtual=build-dependencies make g++ gcc && echo "**** install packages ****" && apk add --no-cache openssl p7zip python3 transmission-cli transmission-daemon && 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/local/bin && echo "**** install third party themes ****" && TRANSMISSIONIC_VERSION=$(curl -s "https://api.github.com/repos/6c65726f79/Transmissionic/releases/latest" | jq -r .tag_name) && curl -o /tmp/transmissionic.zip -L "https://github.com/6c65726f79/Transmissionic/releases/download/${TRANSMISSIONIC_VERSION}/Transmissionic-webui-${TRANSMISSIONIC_VERSION}.zip" && unzip /tmp/transmissionic.zip -d /tmp && mv /tmp/web /transmissionic && curl -o /tmp/combustion.zip -L "https://github.com/Secretmapper/combustion/archive/release.zip" && unzip /tmp/combustion.zip -d / && mkdir -p /tmp/twctemp && TWCVERSION=$(curl -s "https://api.github.com/repos/ronggang/transmission-web-control/releases/latest" | jq -r .tag_name) && curl -o /tmp/twc.tar.gz -L "https://github.com/ronggang/transmission-web-control/archive/${TWCVERSION}.tar.gz" && tar xf /tmp/twc.tar.gz -C /tmp/twctemp --strip-components=1 && mv /tmp/twctemp/src /transmission-web-control && ln -s /usr/share/transmission/web/style /transmission-web-control && ln -s /usr/share/transmission/web/images /transmission-web-control && ln -s /usr/share/transmission/web/javascript /transmission-web-control && ln -s /usr/share/transmission/web/index.html /transmission-web-control/index.original.html && mkdir -p /kettu && curl -o /tmp/kettu.tar.gz -L "https://github.com/endor/kettu/archive/master.tar.gz" && tar xf /tmp/kettu.tar.gz -C /kettu --strip-components=1 && curl -o /tmp/flood-for-transmission.tar.gz -L "https://github.com/johman10/flood-for-transmission/releases/download/latest/flood-for-transmission.tar.gz" && tar xf /tmp/flood-for-transmission.tar.gz -C / && echo "**** cleanup ****" && apk del --purge build-dependencies && rm -rf /root/.cache /tmp/* # buildkit
2022-12-15 03:38:08 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2022-12-15 03:38:08 UTC (buildkit.dockerfile.v0)EXPOSE map[51413/tcp:{} 51413/udp:{} 9091/tcp:{}]
2022-12-15 03:38:08 UTC (buildkit.dockerfile.v0)VOLUME [/config]