2021-02-28 18:05:49 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:e95f33c60a645d6d31f52fdc334aecec0d79a1b410789eae37fbf69efcd587ab - 4.43% (2.68 MB)
[#001] sha256:6b9066ff94f0ec6ecda60c0464eed7486a5012c067707d8602995ca16c818878 - 10.51% (6.36 MB)
[#002] sha256:d00048cae6c8dc45012f668101c3cad559da741ffaaf1424d6568cd7d609754b - 0.0% (601 Bytes)
[#003] sha256:673a80f76512c268684a45bcd40b2a984183a88d9059fca159e704b4649ec85d - 0.0% (901 Bytes)
[#004] sha256:5265c6a8bcaa1dfbc284d9699fbcc65c61b3441a567125bd5730080a80b278cf - 0.0% (666 Bytes)
[#005] sha256:bd5a2b7ec0a769e546ab17f68478da80260174fd6a0b75a8023a2929f35ea5d6 - 0.92% (571 KB)
[#006] sha256:0119010d361bf77b5123ece233e605340b60b1d36c7dee172a860d165169cdff - 41.4% (25.1 MB)
[#007] sha256:04670b023a984f160c7f4c7e24553cb6215235b576c9cf5da436f83c5f503c39 - 0.0% (160 Bytes)
[#008] sha256:96787bdffc3618a520d5d8d60f6d1474b6b8fafd9a87755869281ad57aef83cc - 25.51% (15.4 MB)
[#009] sha256:11b333b25e38c323a0083049f6f85b427e6fab465db13d267590b28cf93d0c65 - 2.75% (1.67 MB)
[#010] sha256:edec598acdb7106921fd628f016ee21827400797ded90c3a3589068fc6c293f5 - 8.04% (4.87 MB)
[#011] sha256:c66bbb7a280ccb83c5493d3917c233bdb295543f020ac48cbded81a5bba2f154 - 0.0% (439 Bytes)
[#012] sha256:199d7f942076ac398e21b6a3bdcb59059bce7aa2a20541d2e2204904b04fbe80 - 0.0% (274 Bytes)
[#013] sha256:f6eba55964bbdd57e628ef43dcf39dc72e61e2f1f7293d7a661cd3cd252e3222 - 0.0% (900 Bytes)
[#014] sha256:e868bdb5d818b6fecbe6095af0e145f01b6320be4c79179ed6f265f2aaf5d3e3 - 0.0% (2.6 KB)
[#015] sha256:cbec9cc5bcb976913002aa0de1aab3ec7847026508724c0bab0c24682b86f5bf - 6.43% (3.89 MB)
/bin/sh -c #(nop) ADD file:7eeea546ecde7a036bf634c08719879d32c7ec6ae599708cd91dc1b830735223 in /
2021-02-24 20:20:12 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-02-24 21:22:02 UTC/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
2021-02-24 21:22:02 UTC/bin/sh -c #(nop) ENV NGINX_VERSION=1.18.0
2021-02-24 21:22:02 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.4.4
2021-02-24 21:22:02 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=2
2021-02-24 21:22:07 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-02-24 21:22:08 UTC/bin/sh -c #(nop) COPY file:e7e183879c35719c18aa7f733651029fbcc55f5d8c22a877ae199b389425789e in /
2021-02-24 21:22:08 UTC/bin/sh -c #(nop) COPY file:08ae525f517706a57131e1efe03acba0fdd4ecadddb55301484f05d2ec76c39a in /docker-entrypoint.d
2021-02-24 21:22:08 UTC/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d
2021-02-24 21:22:08 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2021-02-24 21:22:09 UTC/bin/sh -c #(nop) EXPOSE 80
2021-02-24 21:22:09 UTC/bin/sh -c #(nop) STOPSIGNAL SIGQUIT
2021-02-24 21:22:09 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2021-02-28 18:05:36 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2021-02-28 18:05:36 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2021-02-28 18:05:36 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-02-28 18:05:37 UTC|1 ARCH=amd64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2021-02-28 18:05:37 UTC/bin/sh -c #(nop) ENV RANCHER_CONFD_VERSION=v0.16.2
2021-02-28 18:05:41 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-02-28 18:05:41 UTC|1 ARCH=amd64 /bin/sh -c mkdir -p /opt/cni/bin
2021-02-28 18:05:43 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-02-28 18:05:44 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-02-28 18:05:45 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-02-28 18:05:46 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-02-28 18:05:46 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2021-02-28 18:05:46 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2021-02-28 18:05:47 UTC/bin/sh -c #(nop) COPY multi:51ed3ec74222ac2a438a9df330792e78e1c951fe070a696c3a664c99a5d7445c in /usr/bin/
2021-02-28 18:05:47 UTC/bin/sh -c #(nop) COPY multi:2102a27cd168d4803579f65af8ae6f63fbcbd2569b4c76ea5107fa8570f56c50 in /opt/rke-tools/
2021-02-28 18:05:47 UTC/bin/sh -c #(nop) COPY file:150f4b50505bd07c2029fcd7a50f9ee3fcac7c700f14adbe60d764335cdb482a in /opt/rke-tools
2021-02-28 18:05:48 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2021-02-28 18:05:48 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2021-02-28 18:05:48 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2021-02-28T18:05:34Z
2021-02-28 18:05:49 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2021-02-28 18:05:49 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=8e59ab3e641b804bdb324ff0bbd28694b7b4064d
2021-02-28 18:05:49 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-02-28 18:11:29 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:ba17af31b9276ee11fdf859681b442db50979a39eff4cea2a559a5755cedbe01 - 40.73% (96.7 MB)
[#001] sha256:54a502bbe7e82e8f84d6a1b5954b02cfde47dc81cc4b5a92e0d937fd8521d21b - 0.0% (1.02 KB)
[#002] sha256:ef8134956854939c8f85cea2037ae946543120a15f20fcefa4625ee65f9b486f - 0.0% (1.07 KB)
[#003] sha256:91f2e2efb5bb2b99f4260cccdbac50c48e8ad677bb1102e362bf34a8b4af7fc7 - 0.03% (70.4 KB)
[#004] sha256:2f56376c97a6033a388cc76aa48aa004c050885eebcf42d94cf60758e2ccba2a - 0.0% (1.02 KB)
[#005] sha256:badba7c5cf4a661f0758160fe41ba829431d571290ce1505f7c1d4dd6e1bb879 - 40.82% (96.9 MB)
[#006] sha256:173a0ba20e65960cc1d611c311e62ccc2f10963fb798123ac0376ec86c1fa4ad - 0.06% (135 KB)
[#007] sha256:89d3e1b45dbbd32f636f9083fdb55297dd0af48cb908e2d6f266436339f31a38 - 0.0% (1.02 KB)
[#008] sha256:d8e59b71595d69c68599cff8711c5ea10c7953be1f4bd706eda8e63d1897b6d1 - 0.0% (1.01 KB)
[#009] sha256:8ca070bc427488705a5718386dea4f803c55bd5ddb76eb7f682a53902cbdebc5 - 0.0% (917 Bytes)
[#010] sha256:4dab860ca9a19b8cc0b4ee50853b4a0ffceead16fd2368d18b3d39fad7ec352b - 0.02% (41.4 KB)
[#011] sha256:ab2816e270f025b26ebe35e0ce040b1cedb137176429bdf45b0cdda64cfd6daf - 4.16% (9.88 MB)
[#012] sha256:09980913e10d5951167b414be71b1aa947b9f8cd70195e84639efef01c8e13b3 - 0.7% (1.66 MB)
[#013] sha256:886e323a290b7f9821ad488889423705bd2c5ecb0259b0657ceed4553024cbc3 - 7.0% (16.6 MB)
[#014] sha256:ae51ee53ba44d3cb3e07a9a6e015c1514c071818709f1987fc54cfad3f2e7ffe - 6.39% (15.2 MB)
[#015] sha256:8d283d01ed7b0436a792808bedf2870171fbcab5d78c6276b292c259417f9e1d - 0.09% (209 KB)
[#016] sha256:b91068172ca7cbc448dfceebcb3d58eaf1d83f3ada6697967a3a6e3e19f70c80 - 0.0% (8.1 KB)
[#017] sha256:0fe3cc0e96ed7a597deb186655db161e9dce8008076348ba33bcc2cc93f938a6 - 0.0% (1.5 KB)
[#018] sha256:3a3d151cc16ed347bf25695687002779f72e81e64bf5489674dd2a7a2c92a495 - 0.0% (1.36 KB)
[#019] sha256:c9598b9b63b7131b9260935a5ce0a19120cb48db9248539061b6edb4ed0a4aed - 0.0% (7.76 KB)
[#020] sha256:a99d246a8444fcba397d9815b12732318db101d170ac3b4dd63d9635473ead21 - 0.0% (6.76 KB)
[#021] sha256:54b17a343d85fd5d17d53ca2ed870cf6261c7eac5d8d801ab509da804aaf84ac - 0.0% (826 Bytes)
[#022] sha256:bfe5a2922cdf0ae95c1d07c5135fe4d69345835f0efcb415bebc70ac56b648b4 - 0.0% (851 Bytes)
[#023] sha256:f240c116d32dffe419cc04e4c4a394c37fef6b4b8df4f7705abd53abfeab842c - 0.0% (858 Bytes)
[#024] sha256:8667abbb64ae4f66c83e009d4f83c454c4fbb6152e2f937cb578f6173e86f5e7 - 0.0% (826 Bytes)
[#025] sha256:7e3eeff31e5bc3309b490007f30ff81449872f980fe9ce1a196b82d43fc1b230 - 0.0% (859 Bytes)
[#026] sha256:6e2d5c9baf16ad300b2c14e0e3c3607dc29bf9701a87f7156425c9acdfb2718f - 0.0% (832 Bytes)
[#027] sha256:6603ed9736eeea914ea50d85f0f51420ca48576cc1c15ed860742910185b34a4 - 0.0% (850 Bytes)
Apply image 1809-amd64
2021-02-11 02:37:55 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-02-11 02:37:56 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-02-11 02:38:24 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2021-02-11 02:38:24 UTCcmd /S /C #(nop) USER ContainerUser
2021-02-11 02:38:45 UTCcmd /S /C #(nop) COPY dir:92f4da3fb221812d2477834c10ec76125b48afd356f2b47c3228fa41dd07749d in C:\Program Files\PowerShell
2021-02-11 02:39: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-02-11 02:39:26 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2021-02-11 02:39:26 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2021-02-28 18:11:19 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-02-28 18:11:19 UTCcmd /S /C #(nop) COPY file:7c80292bbdacca850f1c78ac775579f109a75cbe9ac1bb97343dd4ce682a68b3 in \Windows\System32\
2021-02-28 18:11:20 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2021-02-28 18:11:21 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2021-02-28 18:11:22 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2021-02-28 18:11:23 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2021-02-28 18:11:24 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2021-02-28 18:11:25 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2021-02-28 18:11:25 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-02-28 18:11:25 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-02-28 18:11:26 UTCcmd /S /C #(nop) COPY multi:ab70ad224f8a60b7ea3e7c0512cacec0bed6165e758bee900e8d47d7f5563dbe in \usr\bin\
2021-02-28 18:11:26 UTCcmd /S /C #(nop) COPY multi:420f58b6bcb7b3887c95978b2cbb1f305e73e5d7edd7c9e3e1478f7efa75abf6 in \share\scripts\
2021-02-28 18:11:26 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2021-02-28 18:11:27 UTCcmd /S /C #(nop) VOLUME [c:/run]
2021-02-28 18:11:27 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2021-02-28 18:11:28 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2021-02-28T18:04:58Z
2021-02-28 18:11:28 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2021-02-28 18:11:28 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=8e59ab3e641b804bdb324ff0bbd28694b7b4064d
2021-02-28 18:11:29 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-02-28 18:13:56 UTC
239 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:63eed21864e051f1fb4c2f1d98b2579e732b03cd2d3ba946793797ea4dd0f0d6 - 41.12% (98.3 MB)
[#001] sha256:8a55f563dae9429ec55d5b4a2632afcf2febf292ba778132a2f32f1c2caf49c4 - 0.0% (1.01 KB)
[#002] sha256:1e862db6e02c691a956624d8761410bc1fe42f63b64cd90f63944f9ed638dfb2 - 0.0% (1.04 KB)
[#003] sha256:fd30d45da585f4943311c10c7702ca5885dfcd621cd237e26060638424ba4b00 - 0.03% (67.2 KB)
[#004] sha256:297d687bbc442a955fe9085893adee916146dcac058164ca431c412938c5dbb4 - 0.0% (1.01 KB)
[#005] sha256:47429db46ae6fe213ef0ed3e0b3910b2f7f700ab6dab12d7fc4ef7ecbb2c4c3f - 40.56% (96.9 MB)
[#006] sha256:ac257e138871406a795993f9e797c1048f988a07b1dbff60aeb5f0cc5ab2e501 - 0.04% (97.3 KB)
[#007] sha256:c32268170fb6045f5b8d7202f0e9417b4f1d861a44602fb1c27a00d34b8be42b - 0.0% (1.06 KB)
[#008] sha256:0d55a90dbc6517b6eaa23403ed347b2def76a019a589c20599dd8e34cf5b2191 - 0.0% (1 KB)
[#009] sha256:790217524d76663697d72f8178c15b8ee126182cdbfae4f4f3e1192f75bead59 - 0.0% (950 Bytes)
[#010] sha256:ddcbf898447fbbdf78df0b99755d0a04fac1ba59defbb8f218eb0870ad32c546 - 0.02% (41.5 KB)
[#011] sha256:f1758eaa573fbe8c3d58f3382bed40036bde9576a2286c8f212590696db7598b - 4.13% (9.88 MB)
[#012] sha256:f68927a83a1bb9418a35ccd0ab4da31056bfd46968c8b0be9eabbae79350d781 - 0.69% (1.66 MB)
[#013] sha256:642176b18fdbe2833a046f9cd05bcc3ba99b237cb0929bae7044b7b826a820ad - 6.96% (16.6 MB)
[#014] sha256:c8850febc50db7b6eee364b284dfac5cf210f722ff13a6066bdf29c3a6b75854 - 6.35% (15.2 MB)
[#015] sha256:66ac3f15607d04da84c3dc1872fecf899794e5ae9bd07d6e9217d9c208a27367 - 0.09% (209 KB)
[#016] sha256:4c8812eb3b70cfb9658726c1179ce4eb7a8e2b8dee99de99c85d2573cc29281e - 0.0% (8.06 KB)
[#017] sha256:ffdf790cf3e41890eb74f36d209ec6015f67d33fc59eab39deabd7d6462cec59 - 0.0% (1.53 KB)
[#018] sha256:23759c84b6cdd664c6d55c8c6010384f2195088c87d7a8629d743bae65f88261 - 0.0% (1.35 KB)
[#019] sha256:5ee2ce845ef2632fc2000952351b7dafaac07a815405b82d1a81cdd183c6e220 - 0.0% (7.75 KB)
[#020] sha256:629bc412a115856c0dbecbd3860d55ccd23b01f559bf4275f120ec0c88892cbb - 0.0% (6.75 KB)
[#021] sha256:3c42212a2350818641740606165c859ae73fced5b6a1c3e673d883c854f6287d - 0.0% (824 Bytes)
[#022] sha256:5bd43469094bfd69b3df8531c14317da9f3775628afdf499068107d6a5bb6591 - 0.0% (853 Bytes)
[#023] sha256:367612d8f647ae33cb3fc62261126abe8904d882502c0acbec575d4017542fc6 - 0.0% (846 Bytes)
[#024] sha256:8e010bc826746d2f0c2b8e55e966046dfc1025f8e46ae880fe3e375893e647c7 - 0.0% (830 Bytes)
[#025] sha256:b799959c7c3fa6b8527b3b2e3bcaff47d44c2def1ce0dcc4801dfea369a6e789 - 0.0% (802 Bytes)
[#026] sha256:4b8ba0647694cee8d8e0069ebe4ed10129afbffc1948d2cc3c002372bf37bb44 - 0.0% (826 Bytes)
[#027] sha256:15c88038ae8981c19f635bb62736ef1cb1b7e637745d0224d51297808cf8551f - 0.0% (860 Bytes)
Apply image 1909-amd64
2021-02-11 02:49:20 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-02-11 02:49:21 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-02-11 02:50:10 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2021-02-11 02:50:11 UTCcmd /S /C #(nop) USER ContainerUser
2021-02-11 02:50:31 UTCcmd /S /C #(nop) COPY dir:92f4da3fb221812d2477834c10ec76125b48afd356f2b47c3228fa41dd07749d in C:\Program Files\PowerShell
2021-02-11 02:51:11 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-02-11 02:51:11 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2021-02-11 02:51:12 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2021-02-28 18:13:47 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-02-28 18:13:47 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2021-02-28 18:13:48 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2021-02-28 18:13:49 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2021-02-28 18:13:50 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2021-02-28 18:13:51 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2021-02-28 18:13:52 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2021-02-28 18:13:52 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2021-02-28 18:13:53 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-02-28 18:13:53 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-02-28 18:13:53 UTCcmd /S /C #(nop) COPY multi:ab70ad224f8a60b7ea3e7c0512cacec0bed6165e758bee900e8d47d7f5563dbe in \usr\bin\
2021-02-28 18:13:54 UTCcmd /S /C #(nop) COPY multi:420f58b6bcb7b3887c95978b2cbb1f305e73e5d7edd7c9e3e1478f7efa75abf6 in \share\scripts\
2021-02-28 18:13:54 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2021-02-28 18:13:55 UTCcmd /S /C #(nop) VOLUME [c:/run]
2021-02-28 18:13:55 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2021-02-28 18:13:55 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2021-02-28T18:05:06Z
2021-02-28 18:13:56 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2021-02-28 18:13:56 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=8e59ab3e641b804bdb324ff0bbd28694b7b4064d
2021-02-28 18:13:56 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-02-28 18:13:27 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:c0d6cb4b7a468273fac0808544f52a8d1517ffcb86f9b27526694299ccb554ba - 0.0% (852 Bytes)
[#010] sha256:07741847d4c551eb1df10315bc83fa2d4940071bdf2f6402387453d191e557fd - 0.02% (41.4 KB)
[#011] sha256:b766bec79a52f2326ce60d4810cd58b78ef55e4d1d2ee5c287f272d4020ae75e - 4.14% (9.88 MB)
[#012] sha256:09e1a501f51b2724aea189adc2dddbf910c995ec87047c58a2ec816b150cbb3e - 0.69% (1.66 MB)
[#013] sha256:6c2a0eca849adff8193dec1c67921bb7bb0010b122843bdeae83fc34bdd752ab - 6.96% (16.6 MB)
[#014] sha256:ea40863d0555ea96e41d5f8b6a553f553019c7dff5a2161f93657dda1b70d6b2 - 6.35% (15.2 MB)
[#015] sha256:6523ac62aac4e59e232392b3b7528ed0cd59910e8b5026bc198b7283c557a8d1 - 0.09% (209 KB)
[#016] sha256:cac56e4d09aa37a9cac4f4abddb4f6f8294f945e43f176eabc95d4b43af817cf - 0.0% (8.1 KB)
[#017] sha256:205393a658c4aa3f360f5a130e9431022e86bd38ce5347f5be881c5f5f4f3fb5 - 0.0% (1.52 KB)
[#018] sha256:d58bd1759ab5bb51b5a0327517a7545d93d527d3c7f49f5cbae76b79adab8b2e - 0.0% (1.37 KB)
[#019] sha256:c12198644570d0b3fb5e37d8d9e9d993e8b93cd4ff4acb34ffcc76cb7114a9f6 - 0.0% (7.78 KB)
[#020] sha256:7bb19f09d76b7349bc8e70e88bdfc88de15d805c70e5f1115cd3ac34152ca132 - 0.0% (6.77 KB)
[#021] sha256:ebad1cd3e90819bc086a0e51c9648b7eebdfc1d4b96970551a5da6257da1e5e5 - 0.0% (857 Bytes)
[#022] sha256:3babd08c1fe14cb087f8105c0af7134dcd61d33308364a2ffa6f1092769784bd - 0.0% (848 Bytes)
[#023] sha256:5e1a04049ae1000299e0d0d23feea38eca10ced84a55118799f2cea5ba39665e - 0.0% (832 Bytes)
[#024] sha256:1f74859c0066e4f5e31d700c83e6366244588d3f5080966277c370341ce00e1e - 0.0% (828 Bytes)
[#025] sha256:f6880b692c74e7fe866f74bf5a4f8d5c883c5bbe94b7be2f03e32447e3f99ed8 - 0.0% (834 Bytes)
[#026] sha256:03dcee192513377cbd89c7759219dc1a9576b801c50c791a6fe3e16ffca5b554 - 0.0% (827 Bytes)
[#027] sha256:ddda52ed99d74b9122f8dac80a40101bd977a22b852c0c5c606dfe99ef5fcff9 - 0.0% (823 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-02-28 18:13:18 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-02-28 18:13:18 UTCcmd /S /C #(nop) COPY file:40905c89ebeb689893224df574528d0a87cc76f3611c8ca684a9a802d7cd450f in \Windows\System32\
2021-02-28 18:13:19 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2021-02-28 18:13:20 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2021-02-28 18:13:21 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2021-02-28 18:13:22 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2021-02-28 18:13:23 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2021-02-28 18:13:23 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2021-02-28 18:13:24 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-02-28 18:13:24 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-02-28 18:13:24 UTCcmd /S /C #(nop) COPY multi:ab70ad224f8a60b7ea3e7c0512cacec0bed6165e758bee900e8d47d7f5563dbe in \usr\bin\
2021-02-28 18:13:25 UTCcmd /S /C #(nop) COPY multi:420f58b6bcb7b3887c95978b2cbb1f305e73e5d7edd7c9e3e1478f7efa75abf6 in \share\scripts\
2021-02-28 18:13:25 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2021-02-28 18:13:26 UTCcmd /S /C #(nop) VOLUME [c:/run]
2021-02-28 18:13:26 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2021-02-28 18:13:26 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2021-02-28T18:05:09Z
2021-02-28 18:13:27 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2021-02-28 18:13:27 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=8e59ab3e641b804bdb324ff0bbd28694b7b4064d
2021-02-28 18:13:27 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-02-28 18:13:27 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:9cde6bcc502531865f0785750d040abd82298f036b320c85fce4b6ca5af84bc4 - 41.71% (101 MB)
[#001] sha256:da37358f15000330e7c57d1b81160727fe04bafdab52558790850cd8b6a29de5 - 0.0% (1.02 KB)
[#002] sha256:f2112d2a3cd8ea7cf08c4efb91bf9bc2e972bd7c1fe425c2b3af96be341b7f83 - 0.0% (1.02 KB)
[#003] sha256:72928f22d08a71985cf70d3e3406e880b06f9420f032058027cead38891bb8b4 - 0.03% (69.2 KB)
[#004] sha256:83314c45d0a2aa0e3e3c6aafef7bb54c813286612e45438aa1af92aa7d4259b9 - 0.0% (1.02 KB)
[#005] sha256:efd6f483d79802f2597d46cfdbc755561a77cbcf0ff5046b9e292dd6e39439c4 - 40.15% (96.9 MB)
[#006] sha256:f67e7be58fe0d252ebba4a8b521ee6d254990a02963713afa7d284090dc7b839 - 0.04% (111 KB)
[#007] sha256:2cef6fd96da30904c83df3de18f4aeca7c83721dc84f30a3e844878009ff295b - 0.0% (1.01 KB)
[#008] sha256:1963df184e2acf0cb662d81ec85162c29c10deadabe5cdcae4e2b7e32c68ae1e - 0.0% (1.05 KB)
[#009] sha256:450e8ddc1fbd313b0030ac3dea0f72bb017f526bd0394a607249deb1dd4e6cc2 - 0.0% (916 Bytes)
[#010] sha256:37797ea0c75500e642d5df3d323822f23c1e81e158d379d55c5f69f50710b0e6 - 0.02% (41.9 KB)
[#011] sha256:60a918df6069a04794f17c34c83c45e54d153a5ea4db8f559761877204958965 - 4.09% (9.88 MB)
[#012] sha256:4e750695e6f8641948a91152c6ab4f7696e67f90bede3c2c66e64ba6084337ad - 0.69% (1.66 MB)
[#013] sha256:e087a768055993cde71cc0a2c32545c849de9f35ada91117fb6c19c6eee2af2f - 6.89% (16.6 MB)
[#014] sha256:c209646d7be0d43dbb7ff25b2bfc5f4e3f604c1dfe248d3f2528ebccc10e4241 - 6.28% (15.2 MB)
[#015] sha256:058d4c341aa701c50abbd1b43d3abc5d56bac3f1447661b1ecdd87a673a40f9d - 0.08% (209 KB)
[#016] sha256:fed9a6939136ffb904ac35ad7335d1742223d2e48516053c0469c74558eb11ef - 0.0% (8.08 KB)
[#017] sha256:6a2373e4e6e39d9938622c49bebb09d6790fe0688ce9d3fd2354155a9f174c9d - 0.0% (1.54 KB)
[#018] sha256:c62b262e83ba31ff75f10681645a84849fc20f2a6b94c127fe96669cc0cf07eb - 0.0% (1.34 KB)
[#019] sha256:83435734d05523b42556ab5c4d43ee61f4e8fb2dc05c506e43f038f46b03cd3a - 0.0% (7.77 KB)
[#020] sha256:e4ac6b2638094c52ffd6a8cf0431c43bbc90412a7e87b27ce86b91b6c12f474d - 0.0% (6.85 KB)
[#021] sha256:aafa19fbf45cc84ea50a3c866dced3a05f53f2c09725017fa690b0b783e26bf5 - 0.0% (841 Bytes)
[#022] sha256:6fecc774afc91d8f23fc8068f1f8e808473c8beb8393043f45e15faab4277e8b - 0.0% (837 Bytes)
[#023] sha256:bc5e8383b76e3d99e06dbf961bcfbf6708d069b4ff9baae7e09558d49bbd8ccb - 0.0% (852 Bytes)
[#024] sha256:687dd59c3128afc259e846b45911c19c81a9058cfdbd3cfb5c25fbf2dcf08907 - 0.0% (840 Bytes)
[#025] sha256:ef63ea92ee7a9a4c0e4b5e029284c8f75398e91605a230d5a0dbcde137b76845 - 0.0% (863 Bytes)
[#026] sha256:0dd36e0a292619d0b8b445661146b3b2f883c45e59c42537be01e118a6e40755 - 0.0% (835 Bytes)
[#027] sha256:0d9ac81dbeb9929ff35a4ef81707b7e038afbc0ae993ad28cd5fafa86204e100 - 0.0% (834 Bytes)
Apply image 2004-amd64
2021-02-11 02:39: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-2004
2021-02-11 02:39:19 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-02-11 02:40:44 UTCcmd /S /C setx PATH "%PATH%;%ProgramFiles%\PowerShell;" /M
2021-02-11 02:40:45 UTCcmd /S /C #(nop) USER ContainerUser
2021-02-11 02:41:11 UTCcmd /S /C #(nop) COPY dir:92f4da3fb221812d2477834c10ec76125b48afd356f2b47c3228fa41dd07749d in C:\Program Files\PowerShell
2021-02-11 02:41:48 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-02-11 02:41:48 UTCcmd /S /C #(nop) ENV POWERSHELL_TELEMETRY_OPTOUT=0
2021-02-11 02:41:49 UTCcmd /S /C #(nop) CMD ["pwsh.exe"]
2021-02-28 18:13:18 UTCcmd /S /C #(nop) USER ContainerAdministrator
2021-02-28 18:13:18 UTCcmd /S /C #(nop) COPY file:f00a05c6c46c3742f37fe763005d894b91ff7cd57c17c8385448daaf5dc24125 in \Windows\System32\
2021-02-28 18:13:19 UTCcmd /S /C #(nop) COPY multi:c7bc568dafcf1004fb5e7bc503225870bffc7cabf37c00538c79e521ac1c5684 in \Windows\
2021-02-28 18:13:20 UTCcmd /S /C #(nop) COPY dir:c0de291f8f78d9d493a1b6b38928748e390b958d81b00600ccea66b556303d4c in \etc\nginx
2021-02-28 18:13:21 UTCcmd /S /C #(nop) COPY multi:058f1d8d42c82d0fed6ad2a4ad56a57e380ac9ff73fc0150ec84795d3ba9f82d in \opt\cni\bin\
2021-02-28 18:13:22 UTCcmd /S /C #(nop) COPY file:a8ac644f252f522d5f94f4c29a585e3f99ae4141cfd3f73bd6816ac03929df91 in \opt\bin\
2021-02-28 18:13:23 UTCcmd /S /C #(nop) COPY dir:0f40db0dfa22483721e3097243b3b6283256a3d01fd4f8757a36b3a18315c56c in \share\kubelet-volumeplugins
2021-02-28 18:13:23 UTCcmd /S /C #(nop) COPY file:43624d171666e64b77e61c7f1bc07c8d8042502b989ec52b69f4ac62667c7f23 in \share\gce-patch\
2021-02-28 18:13:24 UTCcmd /S /C #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-02-28 18:13:24 UTCcmd /S /C #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-02-28 18:13:24 UTCcmd /S /C #(nop) COPY multi:ab70ad224f8a60b7ea3e7c0512cacec0bed6165e758bee900e8d47d7f5563dbe in \usr\bin\
2021-02-28 18:13:25 UTCcmd /S /C #(nop) COPY multi:420f58b6bcb7b3887c95978b2cbb1f305e73e5d7edd7c9e3e1478f7efa75abf6 in \share\scripts\
2021-02-28 18:13:25 UTCcmd /S /C #(nop) VOLUME [c:/opt/rke-tools]
2021-02-28 18:13:25 UTCcmd /S /C #(nop) VOLUME [c:/run]
2021-02-28 18:13:26 UTCcmd /S /C #(nop) ENTRYPOINT ["pwsh.exe" "-NoLogo"]
2021-02-28 18:13:26 UTCcmd /S /C #(nop) LABEL org.label-schema.build-date=2021-02-28T18:05:10Z
2021-02-28 18:13:27 UTCcmd /S /C #(nop) LABEL org.label-schema.schema-version=1.0
2021-02-28 18:13:27 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-ref=8e59ab3e641b804bdb324ff0bbd28694b7b4064d
2021-02-28 18:13:27 UTCcmd /S /C #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-02-28 18:15:04 UTC
2.47 GB
[#000] sha256:18ae6bebe21d13de4442e4cafdf4fbf4e5b0d866afe416f302da087f53f04ae1 - 56.84% (1.4 GB)
[#001] sha256:37a37544be35743883db3ce75c258781c584706308c42cde380476e57c4851ac - 36.6% (924 MB)
[#002] sha256:b7dc10010c18fd252055aa3acf20042b1f1876acd70c07d412f693ad5ca12a0f - 0.0% (1.27 KB)
[#003] sha256:c02b7d5a41a83f984d88559aa047f1fcf646fa1de6c112e182d00f20bfe9c3ed - 0.0% (1.27 KB)
[#004] sha256:a832e25cef8792f4270bc69930f22099b07e92dcd8d574bbb8dcecca2227b0b4 - 0.31% (7.86 MB)
[#005] sha256:93ee894af24f2fda98aee1509afa1a3719716a845d4b7ad4d7de63e630f4e734 - 0.43% (10.8 MB)
[#006] sha256:89a277651daaa43d7b67879580cd91bea2783f45f4f0e9c7b45b5b9b9771d970 - 0.34% (8.66 MB)
[#007] sha256:e3398d1fd4dd2b0373f337be27143e3f82f58cb3b7f87c4b6ee000ecb245b556 - 2.18% (55 MB)
[#008] sha256:2cc8c6e1b14f433ffbc37869db72e774002e84afd5ec7ad03dbe163aabc91fc1 - 0.81% (20.6 MB)
[#009] sha256:9c884062f213c73ae49499e7ec8d604b66790a2527c9f7b98a4ce9c46afcb92d - 0.23% (5.84 MB)
[#010] sha256:963a549f5d817893d5379ba313667bac4d4f64af512bcf8706c57915d067323b - 0.39% (9.87 MB)
[#011] sha256:7239b50be420f69489d3a0f9912406f8ab1147f78f11f33f3e3a4fa2c6582af2 - 0.02% (482 KB)
[#012] sha256:e52b3d62d19a1e0d181e6c9e249112d4984434fd03179f4fa4b8ed7f91d4ccf2 - 0.19% (4.92 MB)
[#013] sha256:b91c98f9285fe7266dc6f5ebeb2c2c38e8d1ed19d59fc0cc65bb3e9267a47dc2 - 0.23% (5.93 MB)
[#014] sha256:341c21f829491f4154c0aed35e18fff36bf47cafb238476d9e240b4275e92b08 - 0.09% (2.16 MB)
[#015] sha256:1ad86a781f80278b8977e85ede4973646926afe98e8d2bdd5ad2d63e9229a96b - 1.28% (32.3 MB)
[#016] sha256:401161bf4437fa1146fb4564992500502f791f7bd45f337f66d2c938c1bdc53a - 0.03% (744 KB)
[#017] sha256:39975048bbea3f4606fa2534c214fa59a1e226d12caa2ebd77db6f2ded805d5c - 0.02% (530 KB)
[#018] sha256:1e306b9236af5cc47148df42b1bdc80f02a803796b89850f74ca4eebf9cc3ad1 - 0.0% (1.95 KB)
[#019] sha256:20bb35d0311c9ecf14bff35b1f99dd5d92a3e6a93b0e09f10786aae54a0c23bd - 0.0% (1.91 KB)
[#020] sha256:3e24e7aa617dc6d58df02bbb0e8ffb97a7964b1f7236e6632afeb395fb1cc39f - 0.0% (8.18 KB)
[#021] sha256:cf033d0290d6e46c447e0eafc02f35d7f7d3e9d6bf1bd5dcf1015195e0176615 - 0.0% (7.3 KB)
[#022] sha256:0a022e4e085f4d2c8ed263165ec67616c5ef927f06198d96b57a9d35852b77c4 - 0.0% (1.29 KB)
[#023] sha256:e7cca1c45eb4471ec13194ef07bde6df1e0b033f2ac2d0bd652733bb72c3df97 - 0.0% (1.3 KB)
[#024] sha256:a25b6dc84cd0f0800cde8b87827aeb19a90f8a2e76b5214cab1eca81dea99ced - 0.0% (1.27 KB)
[#025] sha256:4a1e521562c8893ed4d1c4de5d6c29e0ecb45af3ff09db1db682af8ad957b5a4 - 0.0% (1.3 KB)
[#026] sha256:de5457bd6c0e8363777feb0c1736f931e1fb191389de2cc4bdc1cfef3818ab6d - 0.0% (1.27 KB)
[#027] sha256:b7d2651614b06cb0d9ecfe0d8bc03ae78da0cdb405cd62cf16f1fa7bd141f9a6 - 0.0% (1.27 KB)
[#028] sha256:8a00408355d03ab51f1bdfde711b081a1a04b28baf923f4b52c8545cccc973ea - 0.0% (1.27 KB)
Apply image 20H2-RTM-amd64
2021-02-05 16:31:04 UTCInstall update 20H2-amd64
2021-02-28 18:12:23 UTCcmd /S /C #(nop) ARG ARCH=amd64
2021-02-28 18:12:24 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]
2021-02-28 18:12:49 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-02-28 18:13:00 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-02-28 18:13:12 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-02-28 18:13:27 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-02-28 18:13:37 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-02-28 18:13:47 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-02-28 18:13:58 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-02-28 18:14:06 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-02-28 18:14:15 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Move-Item -Path /wins.exe -Destination /Windows/
2021-02-28 18:14:23 UTC|1 ARCH=amd64 powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Move-Item -Path /confd.exe -Destination /Windows/
2021-02-28 18:14:32 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-02-28 18:14:41 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-02-28 18:14:50 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-02-28 18:14:59 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-02-28 18:14:59 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) COPY dir:0e091b4a45618ee5e0a3fdbf36ec9bf3f32176adcefc57aad240d792cd57c41e in \etc\confd\templates\
2021-02-28 18:15:00 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) COPY dir:2e4532e0dcb87e2b51373fad8042d50a8ee8583f21892134532191fc727c666a in \etc\confd\conf.d\
2021-02-28 18:15:00 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) COPY multi:ab70ad224f8a60b7ea3e7c0512cacec0bed6165e758bee900e8d47d7f5563dbe in \usr\bin\
2021-02-28 18:15:01 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) COPY multi:420f58b6bcb7b3887c95978b2cbb1f305e73e5d7edd7c9e3e1478f7efa75abf6 in \share\scripts\
2021-02-28 18:15:01 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) VOLUME [c:/opt/rke-tools]
2021-02-28 18:15:02 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) VOLUME [c:/run]
2021-02-28 18:15:02 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENTRYPOINT ["powershell.exe" "-NoLogo"]
2021-02-28 18:15:03 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2021-02-28T18:09:43Z
2021-02-28 18:15:03 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.schema-version=1.0
2021-02-28 18:15:04 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.vcs-ref=8e59ab3e641b804bdb324ff0bbd28694b7b4064d
2021-02-28 18:15:04 UTCpowershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
2021-02-28 18:05:51 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:0328c39aea610966704bee2d2a1c7108816950703f98b4585083cd18f8354380 - 4.59% (2.6 MB)
[#001] sha256:e98006824ae279024171d99bce3387d77dd4c8bf31b7e5b4672a13a1fc2d7b25 - 11.16% (6.32 MB)
[#002] sha256:ae2338ef494686d2df68aa99dbf3f007b1978c760b29fffc2224eb75e4e8e88d - 0.0% (600 Bytes)
[#003] sha256:dd1c31deb20b5db391510383f79a4ebdb8447851b3b354c087dd3f1e57821c91 - 0.0% (903 Bytes)
[#004] sha256:36e383aaf308a0b80e28eba4d51b634f3fd186b4a986ec71a01a3a76da78fb44 - 0.0% (666 Bytes)
[#005] sha256:3afa2a468050b751a409ed2225bafef4f4e2c2c5edeefa0a575dae4eaffe8da9 - 1.01% (583 KB)
[#006] sha256:fbcd25efc42d6d9cc769b7902a67d2d4255fa09a8a59f8787a76b634b0923226 - 40.76% (23.1 MB)
[#007] sha256:1b29607e1fa4956408d0e308aef3c436d49bb842832758a8048215c082d5ee13 - 0.0% (161 Bytes)
[#008] sha256:30d63ec10367a01d34a3b8e82bb7c5bcce0a82385fa0c3935fb17c7d37fb787c - 25.41% (14.4 MB)
[#009] sha256:07e16e016bcfa8f719cb000ef4094c2ca216db05e5a2c19b45e721c38284598c - 2.73% (1.55 MB)
[#010] sha256:5160b67075babecc5dde9afa6a4f4cf005cd0ff114416dfb9c598f8cffcc0c9d - 8.05% (4.56 MB)
[#011] sha256:8b1d05df84432341dfd86dfe30a52ea795420feea6ffc6188d7d5cba5c9613ca - 0.0% (440 Bytes)
[#012] sha256:8e62172f7cad4ca719875b1d2ea62b7ca1c59708feb9fbd142495255020e968e - 0.0% (273 Bytes)
[#013] sha256:ad0b3df2d567e673e8fa8901c13109e9a8941a18f81e7949d7a843ff60506ae2 - 0.0% (898 Bytes)
[#014] sha256:b1f4d2d6655a585173cde87e1ded2b6f529f5fce3de100e88b95b75434e1c1fb - 0.0% (2.6 KB)
[#015] sha256:665368d89dba2cc596cb1dd903a4128fd7b2aaedb3fe8b11a4da7254efae00f1 - 6.29% (3.56 MB)
/bin/sh -c #(nop) ADD file:f8a47118a2fe92c166c426620bb4ea0090dbf17aed269177989f6dca70438750 in /
2021-02-24 20:39:52 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-02-24 23:44:05 UTC/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
2021-02-24 23:44:06 UTC/bin/sh -c #(nop) ENV NGINX_VERSION=1.18.0
2021-02-24 23:44:07 UTC/bin/sh -c #(nop) ENV NJS_VERSION=0.4.4
2021-02-24 23:44:07 UTC/bin/sh -c #(nop) ENV PKG_RELEASE=2
2021-02-24 23:47:42 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-02-24 23:47:43 UTC/bin/sh -c #(nop) COPY file:e7e183879c35719c18aa7f733651029fbcc55f5d8c22a877ae199b389425789e in /
2021-02-24 23:47:43 UTC/bin/sh -c #(nop) COPY file:08ae525f517706a57131e1efe03acba0fdd4ecadddb55301484f05d2ec76c39a in /docker-entrypoint.d
2021-02-24 23:47:44 UTC/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d
2021-02-24 23:47:45 UTC/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]
2021-02-24 23:47:46 UTC/bin/sh -c #(nop) EXPOSE 80
2021-02-24 23:47:47 UTC/bin/sh -c #(nop) STOPSIGNAL SIGQUIT
2021-02-24 23:47:48 UTC/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
2021-02-28 18:05:37 UTC/bin/sh -c #(nop) LABEL maintainer=Rancher Labs <support@rancher.com>
2021-02-28 18:05:38 UTC/bin/sh -c #(nop) ARG ARCH=amd64
2021-02-28 18:05:38 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-02-28 18:05:39 UTC|1 ARCH=arm64 /bin/sh -c apk -U --no-cache add bash && rm -f /bin/sh && ln -s /bin/bash /bin/sh
2021-02-28 18:05:39 UTC/bin/sh -c #(nop) ENV RANCHER_CONFD_VERSION=v0.16.2
2021-02-28 18:05:43 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-02-28 18:05:44 UTC|1 ARCH=arm64 /bin/sh -c mkdir -p /opt/cni/bin
2021-02-28 18:05:45 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-02-28 18:05:46 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-02-28 18:05:47 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-02-28 18:05:48 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-02-28 18:05:48 UTC/bin/sh -c #(nop) COPY dir:1fa0e250ab3f00d19fa4d0b28a4ed2ca020a8fc82a15bd9e830a2772b3fbd8fd in /etc/confd/templates/
2021-02-28 18:05:49 UTC/bin/sh -c #(nop) COPY dir:0459a3816a50ad2a038015821c58d4a730723e9ef118d6d168a9730d9dbc6dca in /etc/confd/conf.d/
2021-02-28 18:05:49 UTC/bin/sh -c #(nop) COPY multi:51ed3ec74222ac2a438a9df330792e78e1c951fe070a696c3a664c99a5d7445c in /usr/bin/
2021-02-28 18:05:49 UTC/bin/sh -c #(nop) COPY multi:2102a27cd168d4803579f65af8ae6f63fbcbd2569b4c76ea5107fa8570f56c50 in /opt/rke-tools/
2021-02-28 18:05:50 UTC/bin/sh -c #(nop) COPY file:8b92b548168df17579dc776f860aafcf8a1e0f330dc6666f8658a69c41e98b3d in /opt/rke-tools
2021-02-28 18:05:50 UTC/bin/sh -c #(nop) VOLUME [/opt/rke-tools]
2021-02-28 18:05:50 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2021-02-28 18:05:50 UTC/bin/sh -c #(nop) LABEL org.label-schema.build-date=2021-02-28T18:05:35Z
2021-02-28 18:05:51 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0
2021-02-28 18:05:51 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=8e59ab3e641b804bdb324ff0bbd28694b7b4064d
2021-02-28 18:05:51 UTC/bin/sh -c #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/rke-tools.git
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.