2021-03-30 20:44:00 UTC
60.5 MB
DOCKER_URL_amd64
DOCKER_URL_amd64https://get.docker.com/builds/Linux/x86_64/docker-1.12.3.tgz
DOCKER_URL_arm64https://github.com/rancher/docker/releases/download/v1.12.3/docker-v1.12.3_arm64.tgz
ETCD_URLETCD_URL_amd64
ETCD_URL_amd64https://github.com/coreos/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-amd64.tar.gz
ETCD_URL_arm64https://github.com/etcd-io/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-arm64.tar.gz
NGINX_VERSION1.18.0
NJS_VERSION0.4.4
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PKG_RELEASE2
RANCHER_CONFD_VERSIONv0.16.2
[#000] sha256:839b45e0263abc8ab2dc0bfabc91a19947e932ffbd551a93970ea3ee971eadf6 - 4.43% (2.68 MB)
[#001] sha256:c3e7563822e1406feb29bdfd58aa1f3663907847048a0b14031eb97362afba15 - 10.51% (6.36 MB)
[#002] sha256:a44649997d87467a491367bf686dc4425536b13276b1b9b6496fbbc048f71568 - 0.0% (600 Bytes)
[#003] sha256:76bb036e92bfdfb123f29e75f1b12e479b764d16ea0b25483d388cbd04031afb - 0.0% (902 Bytes)
[#004] sha256:99b17e9381e228c97d6abf83feebd9dbe4cd8112c113910a91c51b66ffe795e0 - 0.0% (666 Bytes)
[#005] sha256:4288b7e44b295d03022a43556abcbdcd4244663db9ffe93cd8785d81663cbf34 - 0.92% (571 KB)
[#006] sha256:20fd3e40220a46a1018de1baa1b55aef5a71f046190187f7108117705e4714cf - 41.39% (25.1 MB)
[#007] sha256:06d47d19a46f412b326d896beb16fb1b3ee401706281477385a19877a4cfdf5d - 0.0% (160 Bytes)
[#008] sha256:5ab8526a134c9298991817582604a2068bddb49d6d6dbe09e5ff4970ec425b9f - 25.51% (15.4 MB)
[#009] sha256:e98300205c460313c8a197c301c4fbecc74d3d07e499954e2201dc26d7f4b627 - 2.75% (1.67 MB)
[#010] sha256:e61edd44f1aac75ee3caabd9c6864d30da719405d16bd1ff41a4364c79d48a09 - 8.04% (4.87 MB)
[#011] sha256:51fabcdcdcd0990cb898c2dce2d436de5e8cdcd38e9096749f7bc25ef0815a3f - 0.0% (440 Bytes)
[#012] sha256:6222b9343fae9d19952cc0a5e998f2349ef8ecf778b79cfef5f4f8c6a3c37b44 - 0.0% (273 Bytes)
[#013] sha256:e297f2bee9451a1fe19eeace3488b95c6f6b9b366b36adc47ee204a7067ea221 - 0.0% (899 Bytes)
[#014] sha256:1fbd48cfac1c8de524c5f99fe854ea69819eb0676e64b6bf52f05c2efd75b4c9 - 0.0% (2.6 KB)
[#015] sha256:78678b1b67ae5ca6c8ef7ef2cd9b5a7cd296cec956b71fdcb0bf3bd1c445db22 - 6.43% (3.89 MB)
/bin/sh -c #(nop) ADD file:05adf37fc1a41a31d8e0e0b9371a01161abc0d348adacbc81689a1a34e8fe12d in /
2021-03-25 22:19:43 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-03-26 05:57:43 UTC/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
2021-03-26 05:57:43 UTC/bin/sh -c #(nop) ENV NGINX_VERSION=1.18.0
2021-03-26 05:57:44 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.4.4
2021-03-26 05:57:44 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=2
2021-03-26 05:57:50 UTC/bin/sh -c set -x && addgroup -g 101 -S nginx && adduser -S -D -H -u 101 -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx && apkArch="$(cat /etc/apk/arch)" && nginxPackages=" nginx=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${PKG_RELEASE} " && case "$apkArch" in x86_64) set -x && KEY_SHA512="e7fa8303923d9b95db37a77ad46c68fd4755ff935d0a534d26eba83de193c76166c68bfe7f65471bf8881004ef4aa6df3e34689c305662750c0172fca5d8552a *stdin" && apk add --no-cache --virtual .cert-deps openssl && wget -O /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub && if [ "$(openssl rsa -pubin -in /tmp/nginx_signing.rsa.pub -text -noout | openssl sha512 -r)" = "$KEY_SHA512" ]; then echo "key verification succeeded!"; mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/; else echo "key verification failed!"; exit 1; fi && apk del .cert-deps && apk add -X "https://nginx.org/packages/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages ;; *) set -x && tempDir="$(mktemp -d)" && chown nobody:nobody $tempDir && apk add --no-cache --virtual .build-deps gcc libc-dev make openssl-dev pcre-dev zlib-dev linux-headers libxslt-dev gd-dev geoip-dev perl-dev libedit-dev mercurial bash alpine-sdk findutils && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && hg clone https://hg.nginx.org/pkg-oss && cd pkg-oss && hg up ${NGINX_VERSION}-${PKG_RELEASE} && cd alpine && make all && apk index -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz " && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/ && apk del .build-deps && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages ;; esac && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi && if [ -n "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi && if [ -n "/etc/apk/keys/nginx_signing.rsa.pub" ]; then rm -f /etc/apk/keys/nginx_signing.rsa.pub; fi && apk add --no-cache --virtual .gettext gettext && mv /usr/bin/envsubst /tmp/ && runDeps="$( scanelf --needed --nobanner /tmp/envsubst | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --no-cache $runDeps && apk del .gettext && mv /tmp/envsubst /usr/local/bin/ && apk add --no-cache tzdata && apk add --no-cache curl ca-certificates && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d
2021-03-26 05:57:51 UTC/bin/sh -c #(nop) COPY file:e7e183879c35719c18aa7f733651029fbcc55f5d8c22a877ae199b389425789e in /
2021-03-26 05:57:51 UTC/bin/sh -c #(nop) COPY file:08ae525f517706a57131e1efe03acba0fdd4ecadddb55301484f05d2ec76c39a in /docker-entrypoint.d
2021-03-26 05:57:51 UTC/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d
2021-03-26 05:57:51 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2021-03-26 05:57:51 UTC/bin/sh -c #(nop) EXPOSE 80
2021-03-26 05:57:52 UTC/bin/sh -c #(nop) STOPSIGNAL SIGQUIT
2021-03-26 05:57:52 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2021-03-30 20:43:44 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2021-03-30 20:43:45 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2021-03-30 20:43:45 UTC/bin/sh -c #(nop) ENV DOCKER_URL_amd64=https://get.docker.com/builds/Linux/x86_64/docker-1.12.3.tgz DOCKER_URL_arm64=https://github.com/rancher/docker/releases/download/v1.12.3/docker-v1.12.3_arm64.tgz DOCKER_URL=DOCKER_URL_amd64
2021-03-30 20:43:46 UTC|1 ARCH=amd64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2021-03-30 20:43:46 UTC/bin/sh -c #(nop) ENV RANCHER_CONFD_VERSION=v0.16.2
2021-03-30 20:43:50 UTC|1 ARCH=amd64 /bin/sh -c apk -U --no-cache add curl wget ca-certificates tar sysstat acl && mkdir -p /opt/rke-tools/bin /etc/confd && curl -sLf https://github.com/rancher/confd/releases/download/${RANCHER_CONFD_VERSION}/confd-${RANCHER_CONFD_VERSION}-linux-${ARCH} > /usr/bin/confd && chmod +x /usr/bin/confd && curl -sLf ${!DOCKER_URL} | tar xvzf - -C /opt/rke-tools/bin --strip-components=1 docker/docker && chmod +x /opt/rke-tools/bin/docker && curl -sLf https://storage.googleapis.com/kubernetes-release/release/v1.18.2/bin/linux/${ARCH}/kubectl > /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl && apk del curl
2021-03-30 20:43:52 UTC|1 ARCH=amd64 /bin/sh -c mkdir -p /opt/cni/bin
2021-03-30 20:43:54 UTC|1 ARCH=amd64 /bin/sh -c wget -q -O - https://github.com/containernetworking/cni/releases/download/v0.4.0/cni-${ARCH}-v0.4.0.tgz | tar xzf - -C /tmp
2021-03-30 20:43:55 UTC|1 ARCH=amd64 /bin/sh -c wget -q -O /tmp/portmap https://github.com/rancher/plugins/releases/download/v1.9.1-rancher1/portmap-${ARCH}
2021-03-30 20:43:55 UTC/bin/sh -c #(nop) ENV ETCD_URL_amd64=https://github.com/coreos/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-amd64.tar.gz ETCD_URL_arm64=https://github.com/etcd-io/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-arm64.tar.gz ETCD_URL=ETCD_URL_amd64
2021-03-30 20:43:57 UTC|1 ARCH=amd64 /bin/sh -c wget -q -O - ${!ETCD_URL} | tar xzf - -C /tmp && mv /tmp/etcd-*/etcdctl /usr/local/bin/etcdctl && rm -rf /tmp/etcd-* && rm -f /etcd-*.tar.gz && apk del wget
2021-03-30 20:43:57 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2021-03-30 20:43:58 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2021-03-30 20:43:58 UTC/bin/sh -c #(nop) COPY multi:51ed3ec74222ac2a438a9df330792e78e1c951fe070a696c3a664c99a5d7445c in /usr/bin/
2021-03-30 20:43:58 UTC/bin/sh -c #(nop) COPY multi:2102a27cd168d4803579f65af8ae6f63fbcbd2569b4c76ea5107fa8570f56c50 in /opt/rke-tools/
2021-03-30 20:43:58 UTC/bin/sh -c #(nop) COPY file:6337b0db975d077b99eb59b6361c1c5d4c26e51aa2fb87bf81b669b51bd3108e in /opt/rke-tools
2021-03-30 20:43:59 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2021-03-30 20:43:59 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2021-03-30 20:43:59 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.created=2021-03-30T20:43:43Z
2021-03-30 20:44:00 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.revision=10fc69ebf55abc5ca5c8ee2ae47b0b12cfb01ee9
2021-03-30 20:44:00 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.source=https://github.com/rancher/rke-tools.git
2021-03-30 20:44:00 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.url=https://github.com/rancher/rke-tools
2021-03-30 20:44:44 UTC
237 MB
PSDocker-NanoServer-1809
POWERSHELL_TELEMETRY_OPTOUT0
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePathC:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:a11c4ca8f1ba16b6e1395d4523be2215bd0871c2e3e4695b9f2b87bd7472be52 - 40.73% (96.7 MB)
[#001] sha256:1e29214a08a68cc3bab5896a29d8985fca9e12233ed472cd2c6145b1866398e9 - 0.0% (1.05 KB)
[#002] sha256:5d0612e238e6ac2ec0f8cecd67d4a9c3c7f7057095840f820b4a6b6be3f1eb40 - 0.0% (1.07 KB)
[#003] sha256:0b45784adecff220a6553edd5795641c56b36b1e4b57dcab277bbd25883e1d48 - 0.03% (65.8 KB)
[#004] sha256:15b76c0e846ecb01cf839be55fccd055ac480e8a0256d017fe14bc4c8b920ab3 - 0.0% (1.12 KB)
[#005] sha256:f7a723a7649370197918291b2dcd4615f851d12684eef849ebb19e1e1ebe97e9 - 40.82% (96.9 MB)
[#006] sha256:89f8320245754316677404661ea5262e74e31c8a9d068fe9959f532f738835c7 - 0.05% (131 KB)
[#007] sha256:9deac63a32ab50c762ae00da5c23eafcb37b0340d7a403f1fb11336f72b6e6fb - 0.0% (1.02 KB)
[#008] sha256:30f6ca13ff406b2f43cddd954d1ee3af6ab87531b8955a5a3ce6967cc950da30 - 0.0% (1.02 KB)
[#009] sha256:73f19a6d4098344dbe05975294a799c87da1aa98863a4511db3a5d4131627bb3 - 0.0% (829 Bytes)
[#010] sha256:d2f5e9ca2544dfbb22660fb74be0a777eee657cdb8ebecd159297b957a707d8d - 0.02% (41.3 KB)
[#011] sha256:c318a9539a39e9815d224c06a6c08f9c2e91e90b6cb30acda587a77b4073a499 - 4.16% (9.88 MB)
[#012] sha256:3b5faabf6fd5a9443b3eb600cb6bc2cd399f5a06a99eb1dd88038504e9af2e4f - 0.7% (1.66 MB)
[#013] sha256:dc49ead5296bec090df35cfbf3f2e755cbce647f65e4ffae70748fcacee1ba23 - 7.0% (16.6 MB)
[#014] sha256:0c8b69934e09867b1ad64c264c8f58d5913375505ad2906b4f7ab9f1b47647e2 - 6.39% (15.2 MB)
[#015] sha256:c0db4fdae5dd0b505c4ed11f4dac2253f8289a042a4924d51f764bc3a82d71ab - 0.09% (209 KB)
[#016] sha256:bc19c91ad986e54c410001495c08db63d1fa53bad5e1dd5b872e9ca8a0170b20 - 0.0% (8.07 KB)
[#017] sha256:023f3cfde9b229789a764a3e465753d243cbfa456927f6a39d8cdbfa7080ded8 - 0.0% (1.52 KB)
[#018] sha256:6a42b3b8970c8fe1dc6e3bbf54243bbef8ce355ec5906c7b7a943997470c4bed - 0.0% (1.35 KB)
[#019] sha256:6f21a9d54c522d8e090cc915b6a803b8ced3baa83dfa7d51a0145b6ebfd1de22 - 0.0% (7.74 KB)
[#020] sha256:afe51d9d05326fe29eadb0ea3bd56e84387b4aa523eb7d0ae7dfcccf12f1c9c2 - 0.0% (6.8 KB)
[#021] sha256:efd2d5e287966070a0a48e8c21875ff5fde2291b4ebc6b246e6083cf02f057d2 - 0.0% (852 Bytes)
[#022] sha256:783a7ab44bba09089fadbceeb2ab3e0609cb42b95b50eaa089eecfb8cc56db61 - 0.0% (834 Bytes)
[#023] sha256:8d788ff479d5850e2affecf3ca4a14a5b46f3030eb84d1a2ca6ae78a3a268652 - 0.0% (828 Bytes)
[#024] sha256:6ac4d0dcaff65db6074b4b42b756297d36752fe91095d18d2596b0c776aac784 - 0.0% (875 Bytes)
[#025] sha256:3c26902c918dcb438f50ddb23a40b8986356bd77d82b8b2736c2877324adfc5c - 0.0% (851 Bytes)
[#026] sha256:dd5eae30cdabdecd2fcf34e2b4de21351706785d78ddbdf657d79e8c6d2947a3 - 0.0% (829 Bytes)
[#027] sha256:cd5dd000923625688c3ef3da6cbae51d06c7c2ace39bd078dd7944daf85bb7fb - 0.0% (831 Bytes)
Apply image 1809-amd64
2021-03-16 20:49:38 UTCcmd /S /C #(nop) ENV ProgramFiles=C:\Program Files PSModuleAnalysisCachePath=C:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache PSCORE=\PowerShell\pwsh.exe WindowsPATH=C:\Windows\system32;C:\Windows POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-NanoServer-1809
2021-03-16 20:49:39 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-03-16 20:50:06 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2021-03-16 20:50:06 UTCcmd /S /C #(nop) USER ContainerUser
2021-03-16 20:50:29 UTCcmd /S /C #(nop) COPY dir:95a3900c981f8fed1e33d6b4ba55c83ee934ba25de2a134fe716109ea53c77a7 in C:\Program Files\PowerShell
2021-03-16 20:51:08 UTCcmd /S /C pwsh -NoLogo -NoProfile -Command " $stopTime = (get-date).AddMinutes(15); $ErrorActionPreference = 'Stop' ; $ProgressPreference = 'SilentlyContinue' ; while(!(Test-Path -Path $env:PSModuleAnalysisCachePath)) { Write-Host "'Waiting for $env:PSModuleAnalysisCachePath'" ; if((get-date) -gt $stopTime) { throw 'timout expired'} Start-Sleep -Seconds 6 ; }"
2021-03-16 20:51:09 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2021-03-16 20:51:10 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2021-03-29 06:43:53 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-03-29 17:22:00 UTCcmd /S /C #(nop) COPY file:7c80292bbdacca850f1c78ac775579f109a75cbe9ac1bb97343dd4ce682a68b3 in \Windows\System32\
2021-03-29 17:22:01 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2021-03-29 17:22:01 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2021-03-29 17:22:03 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2021-03-29 17:22:04 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2021-03-29 17:22:05 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2021-03-29 17:22:05 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2021-03-29 17:22:06 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-03-29 17:22:06 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-03-29 17:22:07 UTCcmd /S /C #(nop) COPY multi:ab70ad224f8a60b7ea3e7c0512cacec0bed6165e758bee900e8d47d7f5563dbe in \usr\bin\
2021-03-29 17:22:07 UTCcmd /S /C #(nop) COPY multi:420f58b6bcb7b3887c95978b2cbb1f305e73e5d7edd7c9e3e1478f7efa75abf6 in \share\scripts\
2021-03-29 17:22:07 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2021-03-29 17:22:08 UTCcmd /S /C #(nop) VOLUME [c:/run]
2021-03-29 17:22:08 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2021-03-30 20:44:43 UTCcmd /S /C #(nop) LABEL org.opencontainers.image.created=2021-03-30T20:43:12Z
2021-03-30 20:44:43 UTCcmd /S /C #(nop) LABEL org.opencontainers.image.revision=10fc69ebf55abc5ca5c8ee2ae47b0b12cfb01ee9
2021-03-30 20:44:43 UTCcmd /S /C #(nop) LABEL org.opencontainers.image.source=https://github.com/rancher/rke-tools.git
2021-03-30 20:44:44 UTCcmd /S /C #(nop) LABEL org.opencontainers.image.url=https://github.com/rancher/rke-tools
2021-03-30 20:44:55 UTC
238 MB
PSDocker-NanoServer-1909
POWERSHELL_TELEMETRY_OPTOUT0
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePathC:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:d94040b3fb21af94caf37df4e5732028c860fbdff08d3f6f98552316af465108 - 40.91% (97.4 MB)
[#001] sha256:dde1ba7643f60847f0fe8c5ce03f23b32c0927305ed32101d81c94c94aeb5a60 - 0.0% (1.06 KB)
[#002] sha256:8a0fcc2069e76692cc8d3be425e860129743cf0a9a8b7c3a4b385a4bde46e24d - 0.0% (1.02 KB)
[#003] sha256:372628681d3f3193edd6b4d325b0e1951cecf78cda01faebff2d74f027129a95 - 0.03% (63.8 KB)
[#004] sha256:b8b3ab6c96ae48b226cc75073ecc078a2fb97a79e8d0b7a2f47f0fc4dad90640 - 0.0% (1.12 KB)
[#005] sha256:975d084e016729a87575417c001084cb5144aca879b7c752d5a994f0133ded4d - 40.7% (96.9 MB)
[#006] sha256:21cf46249eb98082a41c66691f63e18665ad35770ad6b26eee5a1b8b860bbed0 - 0.05% (127 KB)
[#007] sha256:5d30b6436c00ea54209c3a742e3b55559e90a29bd12a18dfdfef090b48da80b6 - 0.0% (1.02 KB)
[#008] sha256:293b4a523414b356f590eb0ecf1243d4bb8dacd6de738847c751efea835263f0 - 0.0% (1.02 KB)
[#009] sha256:fdaeeb8df987648e3fbaa31d2a37062a6e899bb4f4ac029dedadf0c43e4bcdf1 - 0.0% (859 Bytes)
[#010] sha256:491df0b0257a5f222a68c8f79b8119cc47e412a7482c4f69db22099d6b902ed4 - 0.02% (41.4 KB)
[#011] sha256:3926f5ed3e14c703b0e0a4721045f27458ad8e9c88847342ed184f85a928beb8 - 4.15% (9.88 MB)
[#012] sha256:43f23626c2d07461d39d404147dcbf5bf7ea6ceab29cf1fdbd6a3b6f66b10982 - 0.7% (1.66 MB)
[#013] sha256:076903fb74d315ba3048f1bbcfb89c43297a4207d1cb18e8db83f0a4ae3cd9d7 - 6.98% (16.6 MB)
[#014] sha256:9196a5bc5f6a9cbc09bc05a177a506776c23551649b1e10a1308931914ff8c48 - 6.37% (15.2 MB)
[#015] sha256:7048d11a94a71dc9c459866b832776d6c976ef2ce043066546f57bee4af639a7 - 0.09% (209 KB)
[#016] sha256:cf58c5bc7a7b460302df5ce121a36441825b1c2778c90e3cc0d613dc104aff25 - 0.0% (8.05 KB)
[#017] sha256:586dc593e8031b83cc33d2ef847e90e92af5deb5c7d90e858410e581c766a5c8 - 0.0% (1.48 KB)
[#018] sha256:0abf81666290ab64089a0664a7b83d112b23102f5c12c6c0e9ae3d5016d1fee4 - 0.0% (1.37 KB)
[#019] sha256:ec7c9b31a31545a6fb1c77b7689b775f88634081b2e48b3b4ffb6625071bd522 - 0.0% (7.71 KB)
[#020] sha256:837843838f80880c87610d492f715ead2c5fe8c74d0b1487ad49d3f50b1fbd76 - 0.0% (6.76 KB)
[#021] sha256:21b02b2880ad1a2cbd49aa701661361cf5d92dd9a5bea7ac911d83bdcb5a5efd - 0.0% (867 Bytes)
[#022] sha256:0a6f1700a094962663b71767e8992e5a1a3fca12edce1957c4b7129f593956c2 - 0.0% (829 Bytes)
[#023] sha256:47d6998c34e6be597f8a448dd76d24328895b3625abaf43256740fb23df0a276 - 0.0% (830 Bytes)
[#024] sha256:91d8c491a5b1bfdb8d0e0d3331a2594f583ff5e027f8a41d094f3c608db7d082 - 0.0% (827 Bytes)
[#025] sha256:b68ffc750c649e758ab5a0373df337fd0ac81f2129606038b8bbc2738a493462 - 0.0% (863 Bytes)
[#026] sha256:93e987ac2983e6c6bae699560b7378174394ab2bf6119f9063f6230fca275019 - 0.0% (827 Bytes)
[#027] sha256:802c865747475418eacb53240b9c1200b9961a3a9e29309cac7ce4e1683f004d - 0.0% (827 Bytes)
Apply image 1909-amd64
2021-03-16 21:08:18 UTCcmd /S /C #(nop) ENV ProgramFiles=C:\Program Files PSModuleAnalysisCachePath=C:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache PSCORE=\PowerShell\pwsh.exe WindowsPATH=C:\Windows\system32;C:\Windows POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-NanoServer-1909
2021-03-16 21:08:19 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-03-16 21:08:42 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2021-03-16 21:08:42 UTCcmd /S /C #(nop) USER ContainerUser
2021-03-16 21:09:02 UTCcmd /S /C #(nop) COPY dir:95a3900c981f8fed1e33d6b4ba55c83ee934ba25de2a134fe716109ea53c77a7 in C:\Program Files\PowerShell
2021-03-16 21:09:41 UTCcmd /S /C pwsh -NoLogo -NoProfile -Command " $stopTime = (get-date).AddMinutes(15); $ErrorActionPreference = 'Stop' ; $ProgressPreference = 'SilentlyContinue' ; while(!(Test-Path -Path $env:PSModuleAnalysisCachePath)) { Write-Host "'Waiting for $env:PSModuleAnalysisCachePath'" ; if((get-date) -gt $stopTime) { throw 'timout expired'} Start-Sleep -Seconds 6 ; }"
2021-03-16 21:09:41 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2021-03-16 21:09:42 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2021-03-29 06:43:44 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-03-29 17:23:51 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2021-03-29 17:23:51 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2021-03-29 17:23:52 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2021-03-29 17:23:53 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2021-03-29 17:23:54 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2021-03-29 17:23:55 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2021-03-29 17:23:55 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2021-03-29 17:23:55 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-03-29 17:23:56 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-03-29 17:23:56 UTCcmd /S /C #(nop) COPY multi:ab70ad224f8a60b7ea3e7c0512cacec0bed6165e758bee900e8d47d7f5563dbe in \usr\bin\
2021-03-29 17:23:56 UTCcmd /S /C #(nop) COPY multi:420f58b6bcb7b3887c95978b2cbb1f305e73e5d7edd7c9e3e1478f7efa75abf6 in \share\scripts\
2021-03-29 17:23:57 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2021-03-29 17:23:57 UTCcmd /S /C #(nop) VOLUME [c:/run]
2021-03-29 17:23:57 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2021-03-30 20:44:54 UTCcmd /S /C #(nop) LABEL org.opencontainers.image.created=2021-03-30T20:43:13Z
2021-03-30 20:44:55 UTCcmd /S /C #(nop) LABEL org.opencontainers.image.revision=10fc69ebf55abc5ca5c8ee2ae47b0b12cfb01ee9
2021-03-30 20:44:55 UTCcmd /S /C #(nop) LABEL org.opencontainers.image.source=https://github.com/rancher/rke-tools.git
2021-03-30 20:44:55 UTCcmd /S /C #(nop) LABEL org.opencontainers.image.url=https://github.com/rancher/rke-tools
2021-03-30 20:45:02 UTC
239 MB
PSDocker-NanoServer-1903
POWERSHELL_TELEMETRY_OPTOUT0
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePathC:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:302b7cf33b3a2bd3c958c33a0bb0221099c7abebd46bd685a171899210be5180 - 41.07% (98.1 MB)
[#001] sha256:de401d0ad50a73809f52f1b2cdd08372d48affaed3cdc2d9c82fd93fdb86935d - 0.0% (822 Bytes)
[#002] sha256:b251ece4f860cf57423dd1455d77586f293f469389d4e8f22eda21f3f3865674 - 0.0% (921 Bytes)
[#003] sha256:da83f3e327d6be0778a2e9cb3bdbcd4381d91d53be27a9d83e7a02d713898ab6 - 0.03% (67.5 KB)
[#004] sha256:128bd25e4a5fd56d89d1d3519ab5299fad89e0fa26b42a19bbcacf3ffc63a75a - 0.0% (849 Bytes)
[#005] sha256:02a46850464f896128d38032429af01ed881c9561496b85a7dcf75894d1cfd3f - 40.61% (97 MB)
[#006] sha256:99558043528fca28cf576a5dae72c8dbbe8a309833109869786f3e709ee3e864 - 0.04% (92.7 KB)
[#007] sha256:39ff56c128357f2bde42c7177c54985736cd9022f26f72f0560ccd997975b59d - 0.0% (843 Bytes)
[#008] sha256:bb889420c0e542967f5ff0364fc7f0f64026326699d5dba17be0ff04d9435c8c - 0.0% (917 Bytes)
[#009] sha256:3a8bc1996cc78ea09e8a9e7c3d42f2728867d6293aa008bc1973edc143d9082c - 0.0% (846 Bytes)
[#010] sha256:2720c384918c1f46bef3dee7fed732e43f1e809c2130588d0ec78be02d0e25b1 - 0.02% (41.4 KB)
[#011] sha256:4cafb4604de48773e99fa9109be2e5a91b785e2ea29071aac5d4134796c55662 - 4.14% (9.88 MB)
[#012] sha256:9d4ecf83da477c24b4b75f7c5faaea11850238c7eaa0534ef1953862b0712208 - 0.69% (1.66 MB)
[#013] sha256:8278bf92bf30e549ff5c8b9ace32aaf7f65adfcdb58fad1d8880b76c90d27b77 - 6.96% (16.6 MB)
[#014] sha256:a77be3a077215fa833cce0f728f3eba9c54179e32fe6c31204e41187feaf09d7 - 6.35% (15.2 MB)
[#015] sha256:06010f7f8d530be8b8d3dad8362d58952cf9cffe6ac7eaedc19f0231051053fd - 0.09% (209 KB)
[#016] sha256:72d8154246769e4e20f929ef562aa4ad3a87568ad1febefd91b4db5165d8195e - 0.0% (8.05 KB)
[#017] sha256:6291585ef0550a1980bf3e0abd6e306004d5bcdb896530592de4782487c649f2 - 0.0% (1.5 KB)
[#018] sha256:6b4b98ccb873b22e3e60fd6bfcaf7fb4b7cc9134c1a46e99ee97d26423848a75 - 0.0% (1.38 KB)
[#019] sha256:1a01a1b3316f8d1746ab2096ccd0ad7150ea04f2995b380a51bb2f9800dc29e2 - 0.0% (7.74 KB)
[#020] sha256:d0ab03aaecbfad78d403949916584cb0ca7bf8507b4566ee69d0bff3c73fe2df - 0.0% (6.76 KB)
[#021] sha256:b12a84e5b2f294caee840b70ecf22a39512f3e0c37f1a57f18d3883cd5b34afc - 0.0% (848 Bytes)
[#022] sha256:817f501e67493e9ad37695e7c2f0237875015aee7fbc70c5a7d26a3b80350a23 - 0.0% (832 Bytes)
[#023] sha256:a1d8caf1a6b2c9bc45c79a46aa5c6555fcb7c0e3e9e09969c35d090dd3af625d - 0.0% (869 Bytes)
[#024] sha256:b38b9c2e5dc950467da3b267b94c8e5ae822c3b1ebc64e6e4b38857b295b3ea5 - 0.0% (863 Bytes)
[#025] sha256:7495b866c5cb12572469e42c7db59b7fa9fb48d85116b932eeb93600afdb0307 - 0.0% (852 Bytes)
[#026] sha256:5f62cd600d0eadcd2dc9f9cdc28f6b5ea9d8ba5c80fc3099ea24771b4efecfbc - 0.0% (825 Bytes)
[#027] sha256:5fca11352a6a144aa3480495f017915a294816e80b62abbe18ebf183fef5b0ab - 0.0% (830 Bytes)
Apply image 1903-amd64
2021-01-15 21:08:09 UTCcmd /S /C #(nop) ENV ProgramFiles=C:\Program Files PSModuleAnalysisCachePath=C:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache PSCORE=\PowerShell\pwsh.exe WindowsPATH=C:\Windows\system32;C:\Windows POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-NanoServer-1903
2021-01-15 21:08:10 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-01-15 21:08:55 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2021-01-15 21:08:56 UTCcmd /S /C #(nop) USER ContainerUser
2021-01-15 21:09:18 UTCcmd /S /C #(nop) COPY dir:2b24e0683bce9a6158e61058fc24411d0e844420ed7e75e69332bbeb47759889 in C:\Program Files\PowerShell
2021-01-15 21:09:58 UTCcmd /S /C pwsh -NoLogo -NoProfile -Command " $stopTime = (get-date).AddMinutes(15); $ErrorActionPreference = 'Stop' ; $ProgressPreference = 'SilentlyContinue' ; while(!(Test-Path -Path $env:PSModuleAnalysisCachePath)) { Write-Host "'Waiting for $env:PSModuleAnalysisCachePath'" ; if((get-date) -gt $stopTime) { throw 'timout expired'} Start-Sleep -Seconds 6 ; }"
2021-01-15 21:09:59 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2021-01-15 21:10:00 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2021-03-29 06:42:51 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-03-29 17:22:29 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2021-03-29 17:22:30 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2021-03-29 17:22:31 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2021-03-29 17:22:32 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2021-03-29 17:22:34 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2021-03-29 17:22:34 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2021-03-29 17:22:35 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2021-03-29 17:22:35 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-03-29 17:22:36 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-03-29 17:22:36 UTCcmd /S /C #(nop) COPY multi:ab70ad224f8a60b7ea3e7c0512cacec0bed6165e758bee900e8d47d7f5563dbe in \usr\bin\
2021-03-29 17:22:36 UTCcmd /S /C #(nop) COPY multi:420f58b6bcb7b3887c95978b2cbb1f305e73e5d7edd7c9e3e1478f7efa75abf6 in \share\scripts\
2021-03-29 17:22:37 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2021-03-29 17:22:37 UTCcmd /S /C #(nop) VOLUME [c:/run]
2021-03-29 17:22:38 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2021-03-30 20:45:01 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2021-03-30T20:43:14Z
2021-03-30 20:45:01 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2021-03-30 20:45:01 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=10fc69ebf55abc5ca5c8ee2ae47b0b12cfb01ee9
2021-03-30 20:45:02 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-03-30 20:45:10 UTC
241 MB
PSDocker-NanoServer-2004
POWERSHELL_TELEMETRY_OPTOUT0
PSCORE\PowerShell\pwsh.exe
PSModuleAnalysisCachePathC:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache
ProgramFilesC:\Program Files
WindowsPATHC:\Windows\system32;C:\Windows
[#000] sha256:ef11e3fc4f3c8fde075a1b6b355f949a4163916f4072d517d85436e89af06a04 - 41.51% (99.9 MB)
[#001] sha256:6fac50e5ea9440b763f0f8dd58d69e63559a2f5d23699ddb06bebc4e32457358 - 0.0% (1.08 KB)
[#002] sha256:4a722553d5b78dc72fdfb9cfa606e981a5e16e91bd39e1a31d48d404100a1818 - 0.0% (1.04 KB)
[#003] sha256:5cc4e742396cfd33c96a66606fdd2307fca8332c3017f800f1d469a29db4da6b - 0.03% (69.9 KB)
[#004] sha256:6efd700701e5ddcf36ea5f200578fc1591ec2ede441805f924257c7c2b927173 - 0.0% (1.02 KB)
[#005] sha256:42e2fcb8ee26da679f19acb0e9745b232cf906a1ed06ae22cd76347d40d29edb - 40.29% (96.9 MB)
[#006] sha256:d6e9194bcf6cc510d6cad386008fe83a7f55a32c226dd49d983063497f87d076 - 0.04% (98.5 KB)
[#007] sha256:85ad06cf60bc5b98c298fadd512a78ce8183e802f1aaaa0382363ed84e99b254 - 0.0% (1.02 KB)
[#008] sha256:afb0f01d0f03927cdf49da73a8ed697c412b396f10193cab1998ff6f8e35e442 - 0.0% (1.04 KB)
[#009] sha256:00231077f532e1b8b5442a038ad0242f1ab2bf12be4cefa28f7ae81ca934eeb4 - 0.0% (836 Bytes)
[#010] sha256:f6ebf35e0be6697e069dab2ed7b59475464511cf706f557448a55b1cd7059648 - 0.02% (41.9 KB)
[#011] sha256:1843360ad657963a2a1c32a0791a0b697c346670fb5d7553f49ee96a81dad84d - 4.11% (9.88 MB)
[#012] sha256:42e8de12c1ffce35e2faa7d7ef5696c705c37f22bbde1d395a10e1c9f93f7131 - 0.69% (1.66 MB)
[#013] sha256:0431a68b3cca4a47cb8f8fb808445d6197955fa3848a67794432cee0aa45c0db - 6.91% (16.6 MB)
[#014] sha256:7aca67ce1db05e781fda4bb483ef29450adb852097e788f8e770f8076efba9dc - 6.3% (15.2 MB)
[#015] sha256:4fcaf8c5721d7fcec87720ee5e0e436a70ea06854ab3bdc33a31ab6d82a29638 - 0.08% (209 KB)
[#016] sha256:f072d67098dc00bb99161b55454b8e63586d0a9bad2ccc8c78a3560eb30d06e4 - 0.0% (8.06 KB)
[#017] sha256:9bf44e897923e6cb3edeca1fc2d16d911ac3a35fa48e32b87e8c1910d30b5737 - 0.0% (1.49 KB)
[#018] sha256:fc0b5bec7b790d02d28a1ae9ea854f2ed08007985e0fef20e8db83b7acb3785d - 0.0% (1.35 KB)
[#019] sha256:e57acc5f63a02164d4bcf65cb01ca9476c11b189fb74974bb9d37f9e4ac7a72f - 0.0% (7.79 KB)
[#020] sha256:3cff31a32622fff29b250f1cf2c4f91cb61ac56d342b3915641ae4231fb5cf72 - 0.0% (6.76 KB)
[#021] sha256:2732d014a65426903c678a5e9a9747f7d630d12b95340acfe8f3f834e1500889 - 0.0% (837 Bytes)
[#022] sha256:5d979a4e2c7fde3d8041669eb39acf5c48dcae563f15b7c19fb6ed11fbf18b28 - 0.0% (835 Bytes)
[#023] sha256:84cfdea2bac500853475961ffa3879d8a595b41b2123c4ee7e0b54cb249ef367 - 0.0% (837 Bytes)
[#024] sha256:48d1932b7e87cc705a0cc9696463d6f0040b46e16e48fbd3a85ad76828765171 - 0.0% (839 Bytes)
[#025] sha256:db7adcf2c56cefccf99945e8cba907838236c1c1b014d8f14944c715b172fcb5 - 0.0% (864 Bytes)
[#026] sha256:e2f760b98235fb0d57fc9516d6ce376e2ce1fadde6499713221c43c1cb38719d - 0.0% (875 Bytes)
[#027] sha256:fa315ed1a3ac9164cfd26acd039523fa38dc505ed2967f5bbc0884a107e88bb3 - 0.0% (835 Bytes)
Apply image 2004-amd64
2021-03-16 21:15:26 UTCcmd /S /C #(nop) ENV ProgramFiles=C:\Program Files PSModuleAnalysisCachePath=C:\Users\Public\AppData\Local\Microsoft\Windows\PowerShell\docker\ModuleAnalysisCache PSCORE=\PowerShell\pwsh.exe WindowsPATH=C:\Windows\system32;C:\Windows POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-NanoServer-2004
2021-03-16 21:15:27 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-03-16 21:15:35 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2021-03-16 21:15:35 UTCcmd /S /C #(nop) USER ContainerUser
2021-03-16 21:15:51 UTCcmd /S /C #(nop) COPY dir:95a3900c981f8fed1e33d6b4ba55c83ee934ba25de2a134fe716109ea53c77a7 in C:\Program Files\PowerShell
2021-03-16 21:16:25 UTCcmd /S /C pwsh -NoLogo -NoProfile -Command " $stopTime = (get-date).AddMinutes(15); $ErrorActionPreference = 'Stop' ; $ProgressPreference = 'SilentlyContinue' ; while(!(Test-Path -Path $env:PSModuleAnalysisCachePath)) { Write-Host "'Waiting for $env:PSModuleAnalysisCachePath'" ; if((get-date) -gt $stopTime) { throw 'timout expired'} Start-Sleep -Seconds 6 ; }"
2021-03-16 21:16:25 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2021-03-16 21:16:26 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2021-03-29 06:44:19 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-03-29 17:22:39 UTCcmd /S /C #(nop) COPY file:f00a05c6c46c3742f37fe763005d894b91ff7cd57c17c8385448daaf5dc24125 in \Windows\System32\
2021-03-29 17:22:40 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2021-03-29 17:22:41 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2021-03-29 17:22:42 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2021-03-29 17:22:44 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2021-03-29 17:22:44 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2021-03-29 17:22:45 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2021-03-29 17:22:45 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-03-29 17:22:46 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-03-29 17:22:46 UTCcmd /S /C #(nop) COPY multi:ab70ad224f8a60b7ea3e7c0512cacec0bed6165e758bee900e8d47d7f5563dbe in \usr\bin\
2021-03-29 17:22:47 UTCcmd /S /C #(nop) COPY multi:420f58b6bcb7b3887c95978b2cbb1f305e73e5d7edd7c9e3e1478f7efa75abf6 in \share\scripts\
2021-03-29 17:22:47 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2021-03-29 17:22:47 UTCcmd /S /C #(nop) VOLUME [c:/run]
2021-03-29 17:22:48 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2021-03-30 20:45:09 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2021-03-30T20:43:16Z
2021-03-30 20:45:09 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2021-03-30 20:45:09 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=10fc69ebf55abc5ca5c8ee2ae47b0b12cfb01ee9
2021-03-30 20:45:10 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-03-30 20:43:24 UTC
2.48 GB
[#000] sha256:18ae6bebe21d13de4442e4cafdf4fbf4e5b0d866afe416f302da087f53f04ae1 - 56.4% (1.4 GB)
[#001] sha256:b67d61f938f3725a9bf5b4e0ece52422f5b09c5994bb0af1971b526e4e0f8666 - 37.09% (944 MB)
[#002] sha256:57434d6faeb53422cf0080c1ec793365e1e8fce795b4c0c82d9cd256212d9a33 - 0.0% (1.32 KB)
[#003] sha256:a049e257b83fb3706b68645830106e782d1d819fa538d8b20cc56e9c914d84a5 - 0.0% (1.41 KB)
[#004] sha256:94153b836d74052447196b56f2020653becd23f4328617bf46582407d65fb1ae - 0.31% (7.85 MB)
[#005] sha256:1a47761323ed2f3f208e63379fe7b9c2083d90a0b5f23ac53f78359a42198a2a - 0.43% (10.8 MB)
[#006] sha256:446e009d145c893e3db996ff09d9364935256f4a5475d0f4a0ae67060a29be1f - 0.34% (8.65 MB)
[#007] sha256:0c20e4839ce027bf0c42115b07abf404b29c0209cbfae44d3c444f626bdfb0be - 2.16% (55 MB)
[#008] sha256:429c726cc206027747d8f7d224507c5596f92d4cde436a836b128a1f15f916e6 - 0.81% (20.6 MB)
[#009] sha256:dfbf86e2a4a62fb83bc7b4d756d0f1c273c30cddec8205343446515e4dc9a8a6 - 0.23% (5.82 MB)
[#010] sha256:25e9b5fd76972cd6b8292c46366308bb7ede7d9fec3d3fb6436659f5754a4a80 - 0.39% (9.86 MB)
[#011] sha256:8e7bf7c801aa7aa0b95937ff87de69384ed3630e4f1fbd39175a0e66f7de2f26 - 0.02% (468 KB)
[#012] sha256:425c67579613fdecd031ad611d15d7ef80a00a418167b89fe09aa5d6245bedd1 - 0.19% (4.91 MB)
[#013] sha256:9f2792407a2d213782e4ef5e8437a5e53dbb01733033a4bc6db5205899a76f7d - 0.23% (5.91 MB)
[#014] sha256:e3f2e9879f2b595579df1c7c5106c9510be7a0127e96789a48c514615dc11bba - 0.08% (2.14 MB)
[#015] sha256:31efdbe9dd13e301c715ecdc1b7321908102c32586dc411a5c8e04f2e890bcfa - 1.27% (32.3 MB)
[#016] sha256:4c2e5b0a4755eada972eb669f1a125d4fa2a5e2c8d7d43e536189ad9f2ccc52f - 0.03% (730 KB)
[#017] sha256:c696227b6598140346d9591c726dfa83a33edf9f4033b871bbcd386a24ba7155 - 0.02% (518 KB)
[#018] sha256:5ed1d3981fd3ae97bd3dd0374e590a7bf7bfd85fc9427a7e2d19f2e574dd4881 - 0.0% (1.92 KB)
[#019] sha256:d577abf120624597af6fafd1a0c8c321a2f739d83866ff9584343a8fc4ab38ad - 0.0% (1.81 KB)
[#020] sha256:1431961237d63bd5ebe8e20973d159f7ca51ca9bd11a26944233d29f4eba12a8 - 0.0% (8.16 KB)
[#021] sha256:56d451c7e41071071ae84400fe90a3455706e5bcb35d2ad5749e5583e570ea43 - 0.0% (7.25 KB)
[#022] sha256:f0a797a0704db91955ac1d79c500d57a1c93ecfa1c34cddc4ded25d5e005d42f - 0.0% (1.29 KB)
[#023] sha256:47b0c527cc0f1c23d1038707dc568d15dae6622507527275f6e5d74338762a7a - 0.0% (1.32 KB)
[#024] sha256:6fb7e06da4a1c910dfd9bec049ee554545b263e6da2c4136b4e0d27bd798ad53 - 0.0% (1.27 KB)
[#025] sha256:02286f7dbd1739f5a3175c9d3d1f0badc9332e9ec2007c39c5196f137d8166c9 - 0.0% (1.27 KB)
[#026] sha256:80e4189c83363ba6bbc3b460afaf46873e7cb0e08d2b634c96a7ffcfd9523e11 - 0.0% (1.26 KB)
[#027] sha256:f9bf0ebe5b0c74fd78499e47891f913a869b7191ba8594a72afeb501af8377c7 - 0.0% (1.29 KB)
[#028] sha256:626602b765242da738d35fdfb4259554befe0a4d9a31823c50f49396ff407a30 - 0.0% (1.26 KB)
Apply image 20H2-RTM-amd64
2021-03-05 14:38:58 UTCInstall update 20H2-amd64
2021-03-29 13:33:54 UTCcmd /S /C #(nop) ARG ARCH=amd64
2021-03-29 13:33:55 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]
2021-03-29 17:21:04 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; if (-not (Get-Command Expand-7Zip -ErrorAction Ignore)) { Install-PackageProvider -Name NuGet -Force -Verbose; Install-Module -Name 7Zip4Powershell -Repository PSGallery -Force -Verbose; if(-not $?) { Write-Error "Failed to install package"; Exit 1; } }
2021-03-29 17:21:15 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $URL = 'https://github.com/kelseyhightower/confd/releases/download/v0.16.0/confd-0.16.0-windows-amd64.exe'; Write-Host ('Downloading confd from {0} ...' -f $URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -UseBasicParsing -OutFile c:\confd.exe -Uri $URL; Write-Host 'Complete.'
2021-03-29 17:21:27 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $URL = 'http://nginx.org/download/nginx-1.15.9.zip'; Write-Host ('Downloading nginx from {0} ...' -f $URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -UseBasicParsing -OutFile c:\nginx.zip -Uri $URL; Write-Host 'Expanding ...'; Expand-Archive -Force -Path c:\nginx.zip -DestinationPath c:\; Write-Host 'Complete.'
2021-03-29 17:21:44 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $URL = 'https://github.com/containernetworking/plugins/releases/download/v0.8.2/cni-plugins-windows-amd64-v0.8.2.tgz'; function DeGZip-File ($inFile, $outFile) { $input = New-Object System.IO.FileStream $inFile, ([IO.FileMode]::Open), ([IO.FileAccess]::Read), ([IO.FileShare]::Read); $output = New-Object System.IO.FileStream $outFile, ([IO.FileMode]::Create), ([IO.FileAccess]::Write), ([IO.FileShare]::None); $gzipStream = New-Object System.IO.Compression.GzipStream $input, ([IO.Compression.CompressionMode]::Decompress); try { if (!$input -or !$output -or !$gzipStream) { Write-Error "Failed to Unzip the archive"; Exit 1; } $buffer = New-Object byte[](1024); while ($true) { $read = $gzipstream.Read($buffer, 0, 1024); if ($read -le 0 ) { break; } $output.Write($buffer, 0, $read); } } finally { $gzipStream.Close(); $output.Close(); $input.Close(); } }; Write-Host ('Downloading cni plugins from {0} ...' -f $URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -UseBasicParsing -OutFile c:\containernetworking-plugins.tarz -Uri $URL; Write-Host 'Expanding ...'; DeGZip-File c:\containernetworking-plugins.tarz c:\containernetworking-plugins.tar; Expand-7Zip c:\containernetworking-plugins.tar c:\containernetworking\bin\.; Write-Host 'Complete.'
2021-03-29 17:21:55 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $URL = 'https://github.com/luthermonson/flannel/releases/download/v0.12.0-rancher1/flanneld.exe'; New-Item -Path c:\ -Name "flanneld" -ItemType "directory"; Write-Host ('Downloading flanneld from {0} ...' -f $URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -UseBasicParsing -OutFile c:\flanneld\flanneld.exe -Uri $URL; Write-Host 'Complete.'
2021-03-29 17:22:05 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $URL = 'https://github.com/microsoft/K8s-Storage-Plugins/releases/download/V0.0.3/flexvolume-windows.zip'; Write-Host ('Downloading Volume Plugins from {0} ...' -f $URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -UseBasicParsing -OutFile c:\flexvolume.zip -Uri $URL; Write-Host 'Expanding ...'; Expand-Archive -Force -Path c:\flexvolume.zip -DestinationPath c:\flexvolume\.; Write-Host 'Complete.'
2021-03-29 17:22:15 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $URL = 'https://github.com/rancher/wins/releases/download/v0.0.4/wins.exe'; Write-Host ('Downloading wins from {0} ...' -f $URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -UseBasicParsing -OutFile c:\wins.exe -Uri $URL; Write-Host 'Complete.'
2021-03-29 17:22:24 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $URL = 'https://github.com/pjh/gce-tools/raw/master/GceTools/GetGcePdName/GetGcePdName.dll'; Write-Host ('Downloading GetGcePdName DLL from {0}...' -f $URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -UseBasicParsing -OutFile c:\GetGcePdName.dll -Uri $URL; Write-Host 'Complete.';
2021-03-29 17:22:32 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Move-Item -Path /wins.exe -Destination /Windows/
2021-03-29 17:22:40 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Move-Item -Path /confd.exe -Destination /Windows/
2021-03-29 17:22:49 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; New-Item -Force -ItemType Directory -Path /etc; Move-Item -Path /nginx-1.15.9 -Destination /etc/nginx
2021-03-29 17:22:58 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; New-Item -Force -ItemType Directory -Path /opt; New-Item -Force -ItemType Directory -Path /opt/cni; New-Item -Force -ItemType Directory -Path /opt/bin; New-Item -Force -ItemType Directory -Path /opt/cni/bin; Move-Item -Path /containernetworking/bin/*.exe -Destination /opt/cni/bin/; Move-Item -Path /flanneld/flanneld.exe -Destination /opt/bin/
2021-03-29 17:23:06 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; New-Item -Force -ItemType Directory -Path /share; New-Item -Force -ItemType Directory -Path /gce-patch; New-Item -Force -ItemType Directory -Path /share/kubelet-volumeplugins; Move-Item -Path /flexvolume -Destination /share/kubelet-volumeplugins; Move-Item -Path /GetGcePdName.dll -Destination /share/gce-patch/
2021-03-29 17:23:15 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; New-Item -ItemType SymbolicLink -Target "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -Path "C:\Windows\System32\WindowsPowerShell\v1.0\pwsh.exe"
2021-03-29 17:23:15 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-03-29 17:23:16 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-03-29 17:23:16 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) COPY multi:ab70ad224f8a60b7ea3e7c0512cacec0bed6165e758bee900e8d47d7f5563dbe in \usr\bin\
2021-03-29 17:23:17 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) COPY multi:420f58b6bcb7b3887c95978b2cbb1f305e73e5d7edd7c9e3e1478f7efa75abf6 in \share\scripts\
2021-03-29 17:23:18 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) VOLUME [c:/opt/rke-tools]
2021-03-29 17:23:18 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) VOLUME [c:/run]
2021-03-29 17:23:19 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENTRYPOINT ["powershell.exe" "-NoLogo"]
2021-03-30 20:43:22 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2021-03-30T20:43:16Z
2021-03-30 20:43:23 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.schema-version=1.0
2021-03-30 20:43:24 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.vcs-ref=10fc69ebf55abc5ca5c8ee2ae47b0b12cfb01ee9
2021-03-30 20:43:24 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-03-30 20:43:41 UTC
56.6 MB
DOCKER_URL_arm64
DOCKER_URL_amd64https://get.docker.com/builds/Linux/x86_64/docker-1.12.3.tgz
DOCKER_URL_arm64https://github.com/rancher/docker/releases/download/v1.12.3/docker-v1.12.3_arm64.tgz
ETCD_URLETCD_URL_arm64
ETCD_URL_amd64https://github.com/coreos/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-amd64.tar.gz
ETCD_URL_arm64https://github.com/etcd-io/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-arm64.tar.gz
NGINX_VERSION1.18.0
NJS_VERSION0.4.4
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PKG_RELEASE2
RANCHER_CONFD_VERSIONv0.16.2
[#000] sha256:47185b9379cb432a7a6711ec279fdcb33fe0426be145e1bf61879568c9b54054 - 4.59% (2.6 MB)
[#001] sha256:e419ffc2a8829761a58b1ff130f373767d91c45470308e0487e42bb9af514a92 - 11.16% (6.32 MB)
[#002] sha256:57520c38778c3d36c3c702f769e12a9601466b3b018d976bc1794491c626e063 - 0.0% (600 Bytes)
[#003] sha256:0687936821a7c9216c4f1ecf96d63644add9454994930105e438eaf846ab3b93 - 0.0% (904 Bytes)
[#004] sha256:15797e36a6cdaf0fdaf6c37583e397b3b06eb5da007cd44fa29aa3533c7db732 - 0.0% (664 Bytes)
[#005] sha256:2b654c3d300284ccf330bc54be0b75779c77ef73f14574bdb82f60f67c5812dc - 1.01% (583 KB)
[#006] sha256:9448e79dc6a96df8f7c7b0b8006d26283a0b046d20a4cb7b227de2c23def738a - 40.76% (23.1 MB)
[#007] sha256:72515d0c16ea0a88d5b52ccb4f016f2f163caf97e0fe358d6b7bfc76152b6e67 - 0.0% (160 Bytes)
[#008] sha256:d69071e8e455d13c8073b097b7e17d1cf8204d26d8dff9b7c33132dc09baf9ec - 25.41% (14.4 MB)
[#009] sha256:68b09335e4a9e35b4fceee5a090f6c3802a069a0d66753cdcf23266710886b64 - 2.73% (1.55 MB)
[#010] sha256:6ad2e9173d5a0659d022f4bcba7f3fe84d910ea1e6ffb3dbfa4263c34f3fd29d - 8.05% (4.56 MB)
[#011] sha256:38f124bf7311566756fb4f524b49529dfcdbae6e09e145c623d089e44faf4961 - 0.0% (439 Bytes)
[#012] sha256:09833990bac0038ba11a0fcb9ed838d06e89c6dd76a7e87a17921052ae1662ec - 0.0% (273 Bytes)
[#013] sha256:577b797e2c119aacc920afbb4c50a53e32930aca8167571fcfe94d923e7862fb - 0.0% (898 Bytes)
[#014] sha256:021f6b9b7613ce2624f9508b2e420156628049cfbfceb61a53e5c791ee07e550 - 0.0% (2.6 KB)
[#015] sha256:7c6e8ecb689e297e8cab8d8ff1f6ad0f34150626703b7cc06dac564c49050336 - 6.29% (3.56 MB)
/bin/sh -c #(nop) ADD file:6fca680ab44d711c282deb126e7ad2f7ab51d84a6364192a4913e178f7d393a0 in /
2021-03-25 22:41:38 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-03-26 11:13:50 UTC/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
2021-03-26 11:13:52 UTC/bin/sh -c #(nop) ENV NGINX_VERSION=1.18.0
2021-03-26 11:13:53 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.4.4
2021-03-26 11:13:54 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=2
2021-03-26 11:18:22 UTC/bin/sh -c set -x && addgroup -g 101 -S nginx && adduser -S -D -H -u 101 -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx && apkArch="$(cat /etc/apk/arch)" && nginxPackages=" nginx=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${PKG_RELEASE} " && case "$apkArch" in x86_64) set -x && KEY_SHA512="e7fa8303923d9b95db37a77ad46c68fd4755ff935d0a534d26eba83de193c76166c68bfe7f65471bf8881004ef4aa6df3e34689c305662750c0172fca5d8552a *stdin" && apk add --no-cache --virtual .cert-deps openssl && wget -O /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub && if [ "$(openssl rsa -pubin -in /tmp/nginx_signing.rsa.pub -text -noout | openssl sha512 -r)" = "$KEY_SHA512" ]; then echo "key verification succeeded!"; mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/; else echo "key verification failed!"; exit 1; fi && apk del .cert-deps && apk add -X "https://nginx.org/packages/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages ;; *) set -x && tempDir="$(mktemp -d)" && chown nobody:nobody $tempDir && apk add --no-cache --virtual .build-deps gcc libc-dev make openssl-dev pcre-dev zlib-dev linux-headers libxslt-dev gd-dev geoip-dev perl-dev libedit-dev mercurial bash alpine-sdk findutils && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && hg clone https://hg.nginx.org/pkg-oss && cd pkg-oss && hg up ${NGINX_VERSION}-${PKG_RELEASE} && cd alpine && make all && apk index -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz " && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/ && apk del .build-deps && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages ;; esac && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi && if [ -n "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi && if [ -n "/etc/apk/keys/nginx_signing.rsa.pub" ]; then rm -f /etc/apk/keys/nginx_signing.rsa.pub; fi && apk add --no-cache --virtual .gettext gettext && mv /usr/bin/envsubst /tmp/ && runDeps="$( scanelf --needed --nobanner /tmp/envsubst | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --no-cache $runDeps && apk del .gettext && mv /tmp/envsubst /usr/local/bin/ && apk add --no-cache tzdata && apk add --no-cache curl ca-certificates && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d
2021-03-26 11:18:24 UTC/bin/sh -c #(nop) COPY file:e7e183879c35719c18aa7f733651029fbcc55f5d8c22a877ae199b389425789e in /
2021-03-26 11:18:25 UTC/bin/sh -c #(nop) COPY file:08ae525f517706a57131e1efe03acba0fdd4ecadddb55301484f05d2ec76c39a in /docker-entrypoint.d
2021-03-26 11:18:27 UTC/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d
2021-03-26 11:18:28 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2021-03-26 11:18:29 UTC/bin/sh -c #(nop) EXPOSE 80
2021-03-26 11:18:29 UTC/bin/sh -c #(nop) STOPSIGNAL SIGQUIT
2021-03-26 11:18:30 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2021-03-30 20:43:26 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2021-03-30 20:43:26 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2021-03-30 20:43:26 UTC/bin/sh -c #(nop) ENV DOCKER_URL_amd64=https://get.docker.com/builds/Linux/x86_64/docker-1.12.3.tgz DOCKER_URL_arm64=https://github.com/rancher/docker/releases/download/v1.12.3/docker-v1.12.3_arm64.tgz DOCKER_URL=DOCKER_URL_arm64
2021-03-30 20:43:27 UTC|1 ARCH=arm64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2021-03-30 20:43:28 UTC/bin/sh -c #(nop) ENV RANCHER_CONFD_VERSION=v0.16.2
2021-03-30 20:43:31 UTC|1 ARCH=arm64 /bin/sh -c apk -U --no-cache add curl wget ca-certificates tar sysstat acl && mkdir -p /opt/rke-tools/bin /etc/confd && curl -sLf https://github.com/rancher/confd/releases/download/${RANCHER_CONFD_VERSION}/confd-${RANCHER_CONFD_VERSION}-linux-${ARCH} > /usr/bin/confd && chmod +x /usr/bin/confd && curl -sLf ${!DOCKER_URL} | tar xvzf - -C /opt/rke-tools/bin --strip-components=1 docker/docker && chmod +x /opt/rke-tools/bin/docker && curl -sLf https://storage.googleapis.com/kubernetes-release/release/v1.18.2/bin/linux/${ARCH}/kubectl > /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl && apk del curl
2021-03-30 20:43:32 UTC|1 ARCH=arm64 /bin/sh -c mkdir -p /opt/cni/bin
2021-03-30 20:43:35 UTC|1 ARCH=arm64 /bin/sh -c wget -q -O - https://github.com/containernetworking/cni/releases/download/v0.4.0/cni-${ARCH}-v0.4.0.tgz | tar xzf - -C /tmp
2021-03-30 20:43:36 UTC|1 ARCH=arm64 /bin/sh -c wget -q -O /tmp/portmap https://github.com/rancher/plugins/releases/download/v1.9.1-rancher1/portmap-${ARCH}
2021-03-30 20:43:37 UTC/bin/sh -c #(nop) ENV ETCD_URL_amd64=https://github.com/coreos/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-amd64.tar.gz ETCD_URL_arm64=https://github.com/etcd-io/etcd/releases/download/v3.3.10/etcd-v3.3.10-linux-arm64.tar.gz ETCD_URL=ETCD_URL_arm64
2021-03-30 20:43:38 UTC|1 ARCH=arm64 /bin/sh -c wget -q -O - ${!ETCD_URL} | tar xzf - -C /tmp && mv /tmp/etcd-*/etcdctl /usr/local/bin/etcdctl && rm -rf /tmp/etcd-* && rm -f /etcd-*.tar.gz && apk del wget
2021-03-30 20:43:38 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2021-03-30 20:43:39 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2021-03-30 20:43:39 UTC/bin/sh -c #(nop) COPY multi:51ed3ec74222ac2a438a9df330792e78e1c951fe070a696c3a664c99a5d7445c in /usr/bin/
2021-03-30 20:43:39 UTC/bin/sh -c #(nop) COPY multi:2102a27cd168d4803579f65af8ae6f63fbcbd2569b4c76ea5107fa8570f56c50 in /opt/rke-tools/
2021-03-30 20:43:40 UTC/bin/sh -c #(nop) COPY file:24c12b3b8be943e47d197953b3f1330f3449e854aec5be7c08d3a1af30383b12 in /opt/rke-tools
2021-03-30 20:43:40 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2021-03-30 20:43:40 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2021-03-30 20:43:40 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.created=2021-03-30T20:43:24Z
2021-03-30 20:43:41 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.revision=10fc69ebf55abc5ca5c8ee2ae47b0b12cfb01ee9
2021-03-30 20:43:41 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.source=https://github.com/rancher/rke-tools.git
2021-03-30 20:43:41 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.url=https://github.com/rancher/rke-tools
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.