2023-05-28 06:55:43 UTC
105 MB
/config
LSIO_FIRST_PARTYtrue
PATH/lsiopy/bin:/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
VIRTUAL_ENV/lsiopy
XDG_CONFIG_HOME/config
XDG_DATA_HOME/config
[#000] sha256:d93506461a383d1d74584dd7b6890cea09ce8276bae49f28aa671a1891fb3cf8 - 5.2% (5.48 MB)
[#001] sha256:ab603ac8d5c02a19f354ccc5a619f77ae465908854ae40edda61e399973608c7 - 0.0% (3.92 KB)
[#002] sha256:861ef7540188fac0679615dde5917e953f1ca3e2c9a905221d261c690fc6e644 - 0.0% (967 Bytes)
[#003] sha256:c8b98c39c35a7391b5d2f6eae26aedd4efec0e5c46d57a056225cf2bc7c3f6a8 - 4.06% (4.27 MB)
[#004] sha256:e7aac66baf6e68ec36b64b4de58441ec9794067ab2349164d67fc46fcb547df8 - 0.0% (3.12 KB)
[#005] sha256:7557e3ca7a4b8a9c87f41ae7e2d6eccc000df92822e1f514c42a27b038334650 - 90.73% (95.5 MB)
[#006] sha256:5bdbd2284c2efcd713413a497c95446c4a1ec6aa81ba3ecc4e09ff57f2977bae - 0.0% (1.35 KB)
COPY /root-out/ / # buildkit
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ARG MODS_VERSION=v3
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ARG PKG_INST_VERSION=v1
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 5d487e0d-ls24 Build-date:- 2023-05-27T13:29:41+00:00
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/package-install.v1 /etc/s6-overlay/s6-rc.d/init-mods-package-install/run # buildkit
2023-05-27 13:31:54 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 VIRTUAL_ENV=/lsiopy PATH=/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-05-27 13:31:56 UTC (buildkit.dockerfile.v0)RUN |4 BUILD_DATE=2023-05-27T13:29:41+00:00 VERSION=5d487e0d-ls24 MODS_VERSION=v3 PKG_INST_VERSION=v1 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache alpine-release bash ca-certificates coreutils curl jq netcat-openbsd 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 /lsiopy && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit
2023-05-27 13:31:56 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-27 13:31:56 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)ENV LSIO_FIRST_PARTY=true
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)ARG QBITTORRENT_VERSION
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)ARG QBT_VERSION
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- release-4.5.2_v1.2.19-ls25 Build-date:- 2023-05-28T06:54:30+00:00
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)LABEL maintainer=thespad
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)ARG UNRAR_VERSION=6.1.7
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)ENV HOME=/config XDG_CONFIG_HOME=/config XDG_DATA_HOME=/config
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)RUN |5 BUILD_DATE=2023-05-28T06:54:30+00:00 VERSION=release-4.5.2_v1.2.19-ls25 QBITTORRENT_VERSION=release-4.5.2_v1.2.19 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}/x86_64-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-x64-${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-05-28 06:55:43 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)EXPOSE map[6881/tcp:{} 6881/udp:{} 8080/tcp:{}]
2023-05-28 06:55:43 UTC (buildkit.dockerfile.v0)VOLUME [/config]
2023-05-28 06:56:01 UTC
102 MB
/config
LSIO_FIRST_PARTYtrue
PATH/lsiopy/bin:/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
VIRTUAL_ENV/lsiopy
XDG_CONFIG_HOME/config
XDG_DATA_HOME/config
[#000] sha256:23c2b0134513b36d61c4a23ce0ee5d1aa743868825c0c39464f8e55c1cafd654 - 5.27% (5.38 MB)
[#001] sha256:ab603ac8d5c02a19f354ccc5a619f77ae465908854ae40edda61e399973608c7 - 0.0% (3.92 KB)
[#002] sha256:f0831a311ba84910c329ee0b2d62a653668613f1a9980705516a89d17ccc1673 - 0.0% (968 Bytes)
[#003] sha256:da896d5c215a3c7887cc8afb31644e00faa003659d06a322eba058b49d17d841 - 5.35% (5.46 MB)
[#004] sha256:dca5ca33779b128f4854e73a51625b5e4fbbbb2adce68cdf8ff9d6c449058ecb - 0.0% (3.11 KB)
[#005] sha256:5a9ae296b32f512f1fef9c38bc03279e4b7837338023a1959b2d5cc817c54969 - 89.37% (91.3 MB)
[#006] sha256:2e7eb8a5f5ab9a50b22e9c713584cb3d065d64c1f77739b1502804b7a587c257 - 0.0% (1.35 KB)
COPY /root-out/ / # buildkit
2023-05-27 13:31:55 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-27 13:31:55 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-27 13:31:55 UTC (buildkit.dockerfile.v0)ARG MODS_VERSION=v3
2023-05-27 13:31:55 UTC (buildkit.dockerfile.v0)ARG PKG_INST_VERSION=v1
2023-05-27 13:31:55 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 5d487e0d-ls24 Build-date:- 2023-05-27T13:29:41+00:00
2023-05-27 13:31:55 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2023-05-27 13:31:55 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
2023-05-27 13:31:55 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/package-install.v1 /etc/s6-overlay/s6-rc.d/init-mods-package-install/run # buildkit
2023-05-27 13:31:55 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 VIRTUAL_ENV=/lsiopy PATH=/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-05-27 13:31:58 UTC (buildkit.dockerfile.v0)RUN |4 BUILD_DATE=2023-05-27T13:29:41+00:00 VERSION=5d487e0d-ls24 MODS_VERSION=v3 PKG_INST_VERSION=v1 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache alpine-release bash ca-certificates coreutils curl jq netcat-openbsd 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 /lsiopy && 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-05-27 13:31:58 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-27 13:31:58 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)ENV LSIO_FIRST_PARTY=true
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)ARG QBITTORRENT_VERSION
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)ARG QBT_VERSION
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- release-4.5.2_v1.2.19-ls25 Build-date:- 2023-05-28T06:54:30+00:00
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)LABEL maintainer=thespad
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)ARG UNRAR_VERSION=6.1.7
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)ENV HOME=/config XDG_CONFIG_HOME=/config XDG_DATA_HOME=/config
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)RUN |5 BUILD_DATE=2023-05-28T06:54:30+00:00 VERSION=release-4.5.2_v1.2.19-ls25 QBITTORRENT_VERSION=release-4.5.2_v1.2.19 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-05-28 06:56:01 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)EXPOSE map[6881/tcp:{} 6881/udp:{} 8080/tcp:{}]
2023-05-28 06:56:01 UTC (buildkit.dockerfile.v0)VOLUME [/config]
2023-05-28 06:56:05 UTC
106 MB
/config
LSIO_FIRST_PARTYtrue
PATH/lsiopy/bin:/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
VIRTUAL_ENV/lsiopy
XDG_CONFIG_HOME/config
XDG_DATA_HOME/config
[#000] sha256:958c04c0f1916a984f71210f7badb72e0323c03a69415d84759d6ce37866f5a5 - 5.99% (6.36 MB)
[#001] sha256:4c2c17fe7a64bde6607fa8f0d13ab62b04cc81418a06ffb977e08d02aa606729 - 0.0% (3.92 KB)
[#002] sha256:4701a5c43c48657ef084f2401ca37535cfb60aaffe740c9f6a5f2d42dd0cf0f3 - 0.0% (966 Bytes)
[#003] sha256:8e368ca2225d10cb6503dba8351b10ffe6b22276d0ee2492f7ae576f435ffd8d - 5.68% (6.03 MB)
[#004] sha256:c56abc58b4437d3ef8a4b660a3002763adefca0fffb0df2bc34f223c3b49cca9 - 0.0% (3.13 KB)
[#005] sha256:48339d885b62d8adb9bbbc88b5b8a31d9777c563ad45ca52a58ff66b2651c3ee - 88.32% (93.8 MB)
[#006] sha256:edd375f07cafb8a468eab2fbb2f15047041b7bff4d5c9204c6fc473d9dc38d3d - 0.0% (1.34 KB)
COPY /root-out/ / # buildkit
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ARG MODS_VERSION=v3
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ARG PKG_INST_VERSION=v1
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 5d487e0d-ls24 Build-date:- 2023-05-27T13:29:41+00:00
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
2023-05-27 13:31:54 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/package-install.v1 /etc/s6-overlay/s6-rc.d/init-mods-package-install/run # buildkit
2023-05-27 13:31:54 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 VIRTUAL_ENV=/lsiopy PATH=/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-05-27 13:31:55 UTC (buildkit.dockerfile.v0)RUN |4 BUILD_DATE=2023-05-27T13:29:41+00:00 VERSION=5d487e0d-ls24 MODS_VERSION=v3 PKG_INST_VERSION=v1 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache alpine-release bash ca-certificates coreutils curl jq netcat-openbsd 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 /lsiopy && 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
2023-05-27 13:31:55 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-27 13:31:55 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)ENV LSIO_FIRST_PARTY=true
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)ARG QBITTORRENT_VERSION
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)ARG QBT_VERSION
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- release-4.5.2_v1.2.19-ls25 Build-date:- 2023-05-28T06:54:30+00:00
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)LABEL maintainer=thespad
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)ARG UNRAR_VERSION=6.1.7
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)ENV HOME=/config XDG_CONFIG_HOME=/config XDG_DATA_HOME=/config
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)RUN |5 BUILD_DATE=2023-05-28T06:54:30+00:00 VERSION=release-4.5.2_v1.2.19-ls25 QBITTORRENT_VERSION=release-4.5.2_v1.2.19 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}/aarch64-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-arm64-${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-05-28 06:56:05 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)EXPOSE map[6881/tcp:{} 6881/udp:{} 8080/tcp:{}]
2023-05-28 06:56:05 UTC (buildkit.dockerfile.v0)VOLUME [/config]