2017-12-19 11:58:22 UTC
36.7 MB
/config
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PS1$(whoami)@$(hostname):$(pwd)$
TERMxterm
XDG_CONFIG_HOME/config
XDG_DATA_HOME/config
[#000] sha256:c41c92663cc371f31d55f0a6249a979a739b348c10ae35f02c0cfff25ebdbafa - 5.68% (2.08 MB)
[#001] sha256:5de260a4fffd50ad5a905081343999b9eceafda36a7a19c12d59f1667eab3e2b - 18.36% (6.73 MB)
[#002] sha256:3d0ffb95ea8bc2b8b9b2c85edb450263b941e3b53cfdaa3ac1866b7662fa8937 - 0.0% (457 Bytes)
[#003] sha256:8c966696eca7bda21067af41c78253bf34177a18ab4100f0fcd6d7380a267ca5 - 0.0% (395 Bytes)
[#004] sha256:ab36373c387bccdd1cce153a21de355734d52759a0bdaa5137530bca0b3cf61a - 75.96% (27.8 MB)
[#005] sha256:5cb5da9b60818a7aa061a2d31e59adbced23cbd235995f385bb5d6c1a24580e8 - 0.0% (675 Bytes)
/bin/sh -c #(nop) ADD file:f5499032484834e441bff7414b2de53362b9a56b9e8ec1a55cf4a783a5aef7cf in /
2017-12-16 00:03:37 UTC/bin/sh -c #(nop) MAINTAINER sparklyballs
2017-12-16 00:03:37 UTC/bin/sh -c #(nop) ARG OVERLAY_VERSION=v1.19.1.1
2017-12-16 00:03:38 UTC/bin/sh -c #(nop) ARG OVERLAY_ARCH=amd64
2017-12-16 00:03:39 UTC/bin/sh -c #(nop) ENV PS1=$(whoami)@$(hostname):$(pwd)$ HOME=/root TERM=xterm
2017-12-16 00:03:48 UTC|2 OVERLAY_ARCH=amd64 OVERLAY_VERSION=v1.19.1.1 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache --virtual=build-dependencies curl tar && echo "**** install runtime packages ****" && apk add --no-cache bash ca-certificates coreutils shadow tzdata && echo "**** add s6 overlay ****" && curl -o /tmp/s6-overlay.tar.gz -L "https://github.com/just-containers/s6-overlay/releases/download/${OVERLAY_VERSION}/s6-overlay-${OVERLAY_ARCH}.tar.gz" && tar xfz /tmp/s6-overlay.tar.gz -C / && 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 "**** cleanup ****" && apk del --purge build-dependencies && rm -rf /tmp/*
2017-12-16 00:03:48 UTC/bin/sh -c #(nop) COPY dir:a0fd8bc2d9b5bbccb66a0cdd1077c4bede54f0d54c539068cee4a404adcf285b in /
2017-12-16 00:03:49 UTC/bin/sh -c #(nop) ENTRYPOINT ["/init"]
2017-12-19 11:51:42 UTC/bin/sh -c #(nop) ARG BUILD_DATE
2017-12-19 11:51:43 UTC/bin/sh -c #(nop) ARG VERSION
2017-12-19 11:51:44 UTC/bin/sh -c #(nop) LABEL build_version=Linuxserver.io version:- 46 Build-date:- December-19-2017-11:51:38-UTC
2017-12-19 11:51:45 UTC/bin/sh -c #(nop) LABEL maintainer=sparklyballs
2017-12-19 11:51:45 UTC/bin/sh -c #(nop) ARG QBITTORRENT_VER=4.0.3
2017-12-19 11:51:46 UTC/bin/sh -c #(nop) ARG RASTERBAR_VER=1.1.5
2017-12-19 11:51:47 UTC/bin/sh -c #(nop) ENV HOME=/config XDG_CONFIG_HOME=/config XDG_DATA_HOME=/config
2017-12-19 11:51:47 UTC/bin/sh -c #(nop) COPY dir:7fb4bfd3bda6a848c5b98c0f3e6860c19901289523f5b9e2bacc683e2849ad47 in /tmp/patches
2017-12-19 11:58:20 UTC|4 BUILD_DATE=December-19-2017-11:51:38-UTC QBITTORRENT_VER=4.0.3 RASTERBAR_VER=1.1.5 VERSION=46 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache --virtual=build-dependencies autoconf automake boost-dev cmake curl file g++ geoip-dev git libtool make qt5-qttools-dev && echo "**** install runtime packages ****" && apk add --no-cache boost-system boost-thread ca-certificates geoip qt5-qtbase unrar && echo "**** compile libtorrent rasterbar ****" && git clone https://github.com/arvidn/libtorrent.git /tmp/libtorrent && cd /tmp/libtorrent && RASTERBAR_REALVER=${RASTERBAR_VER//./_} && git checkout "libtorrent-${RASTERBAR_REALVER}" && ./autotool.sh && ./configure --disable-debug --enable-encryption --prefix=/usr && echo "**** attempt to set number of cores available for make to use ****" && set -ex && CPU_CORES=$( < /proc/cpuinfo grep -c processor ) || echo "failed cpu look up" && if echo $CPU_CORES | grep -E -q '^[0-9]+$'; then : ; if [ "$CPU_CORES" -gt 7 ]; then CPU_CORES=$(( CPU_CORES - 3 )); elif [ "$CPU_CORES" -gt 5 ]; then CPU_CORES=$(( CPU_CORES - 2 )); elif [ "$CPU_CORES" -gt 3 ]; then CPU_CORES=$(( CPU_CORES - 1 )); fi else CPU_CORES="1"; fi && make -j $CPU_CORES && make install && strip --strip-unneeded /usr/lib/libtorrent-rasterbar.so* /usr/lib/libtorrent-rasterbar.a* && echo "**** compile qbittorrent ****" && mkdir -p /tmp/qbittorrent-src && curl -o /tmp/bittorrent.tar.gz -L "https://github.com/qbittorrent/qBittorrent/archive/release-${QBITTORRENT_VER}.tar.gz" && tar xf /tmp/bittorrent.tar.gz -C /tmp/qbittorrent-src --strip-components=1 && cd /tmp/qbittorrent-src/src/app && patch -i /tmp/patches/main.patch && cd /tmp/qbittorrent-src && ./configure --disable-gui --prefix=/usr && make -j $CPU_CORES && set +ex && make install && echo "**** cleanup ****" && apk del --purge build-dependencies && rm -rf /tmp/*
2017-12-19 11:58:20 UTC/bin/sh -c #(nop) COPY dir:944f0d5777a7371be6bb7ad7a8ebb77d34634a30daede0c6941fbfa09930028a in /
2017-12-19 11:58:21 UTC/bin/sh -c #(nop) EXPOSE 6881/tcp 6881/udp 8080/tcp
2017-12-19 11:58:22 UTC/bin/sh -c #(nop) VOLUME [/config /downloads]
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.