2023-07-04 01:15:36 UTC
1.38 GB
e314569943a591a097fa9119bf786556a4eb5c710e8ddefa57e95cd95aa7cc7f
DOCKER_BUILDX_URLhttps://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.windows-amd64.exe
DOCKER_BUILDX_VERSION0.11.0
DOCKER_COMPOSE_SHA256e77e4764e939782d27570fc17a6029b63fe922ebce6800128dfe1c047a9395ed
DOCKER_COMPOSE_URLhttps://github.com/docker/compose/releases/download/v2.19.1/docker-compose-windows-x86_64.exe
DOCKER_COMPOSE_VERSION2.19.1
DOCKER_URLhttps://download.docker.com/win/static/stable/x86_64/docker-24.0.2.zip
DOCKER_VERSION24.0.2
[#000] sha256:0ce49598e7371c2c318cfa408f639c917d1f43843fb9e0a3316db1ba7fbb14db - 96.35% (1.33 GB)
[#001] sha256:27db350c833f7fe0378bc977cd819c1ffe4133ff02ff69f1531f8ddc552c2366 - 0.0% (1.29 KB)
[#002] sha256:c818796445a77806e10e6c159d076d6b0f5105edd8e7f27848042efb890970dd - 0.02% (319 KB)
[#003] sha256:9422c57cfa4958bc0481159cf6f3ea51c62e434b415bd37af5122a927dad44e5 - 0.0% (1.39 KB)
[#004] sha256:3038159acbdccb213594b93376d485aeeb899ddecb260c15c35876de1a826205 - 0.0% (1.39 KB)
[#005] sha256:de76d8841c57bd71ac348e6e5adafd8c4bb7b220dba2990cfb45212e8c02ec51 - 1.18% (16.6 MB)
[#006] sha256:601d2c848cc34db3244fd32712379ae9207438e92e8b1bfc93158f40c450b05f - 0.0% (1.37 KB)
[#007] sha256:0d2546289e6eaf1c79435f5ebc3913d3400b9e48f9865fbac9a4f64a9631e16c - 0.0% (1.37 KB)
[#008] sha256:c7be502d4e9bbbfde8c8e153a1b773402566c1780fe74fc0ebd74481ab156a59 - 0.0% (1.38 KB)
[#009] sha256:5a421c1544ba646557911d25deeb82872547032eda17bffad452d2d66dbe4714 - 1.21% (17 MB)
[#010] sha256:f39d4002a5465e2a54b5562a0a7b6a187bfaa7700be739499df976f3bc44d0ca - 0.0% (1.38 KB)
[#011] sha256:ef31be35c2ca19b058f5d6fea8c49089984e462a7994f4b3b84e66c9021d4124 - 0.0% (1.38 KB)
[#012] sha256:a71959fbe60409fc46fb15bdaee5d9ce0320956c47afdd91fc1e2f83fc0e2c84 - 0.0% (1.38 KB)
[#013] sha256:1f9be1b06df89d2d6712ac575cdfddf225e926515586db03c65f6391c11f10bc - 1.25% (17.6 MB)
Apply image 10.0.20348.1787
2023-06-24 00:38:07 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]
2023-06-24 03:33:33 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $newPath = ('{0}\docker;{1}' -f $env:ProgramFiles, $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine);
2023-06-24 03:33:34 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_VERSION=24.0.2
2023-06-24 03:33:35 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_URL=https://download.docker.com/win/static/stable/x86_64/docker-24.0.2.zip
2023-06-24 03:34:04 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading {0} ...' -f $env:DOCKER_URL); Invoke-WebRequest -Uri $env:DOCKER_URL -OutFile 'docker.zip'; Write-Host 'Expanding ...'; Expand-Archive docker.zip -DestinationPath $env:ProgramFiles; Write-Host 'Removing ...'; Remove-Item @( 'docker.zip', ('{0}\docker\dockerd.exe' -f $env:ProgramFiles) ) -Force; Write-Host 'Verifying install ("docker --version") ...'; docker --version; Write-Host 'Complete.';
2023-06-24 03:34:05 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_BUILDX_VERSION=0.11.0
2023-06-24 03:34:06 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_BUILDX_URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.windows-amd64.exe
2023-06-24 03:34:07 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_BUILDX_SHA256=e314569943a591a097fa9119bf786556a4eb5c710e8ddefa57e95cd95aa7cc7f
2023-06-24 03:34:34 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $dir = ('{0}\docker\cli-plugins' -f $env:ProgramFiles); Write-Host ('Creating {0} ...' -f $dir); New-Item -ItemType Directory $dir -Force; $plugin = ('{0}\docker-buildx.exe' -f $dir); Write-Host ('Downloading {0} ...' -f $env:DOCKER_BUILDX_URL); Invoke-WebRequest -Uri $env:DOCKER_BUILDX_URL -OutFile $plugin; Write-Host ('Verifying sha256 ({0}) ...' -f $env:DOCKER_BUILDX_SHA256); if ((Get-FileHash $plugin -Algorithm sha256).Hash -ne $env:DOCKER_BUILDX_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Verifying install ("docker buildx version") ...'; docker buildx version; Write-Host 'Complete.';
2023-07-04 01:15:07 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_COMPOSE_VERSION=2.19.1
2023-07-04 01:15:07 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_COMPOSE_URL=https://github.com/docker/compose/releases/download/v2.19.1/docker-compose-windows-x86_64.exe
2023-07-04 01:15:08 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_COMPOSE_SHA256=e77e4764e939782d27570fc17a6029b63fe922ebce6800128dfe1c047a9395ed
2023-07-04 01:15:36 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $dir = ('{0}\docker\cli-plugins' -f $env:ProgramFiles); Write-Host ('Creating {0} ...' -f $dir); New-Item -ItemType Directory $dir -Force; $plugin = ('{0}\docker-compose.exe' -f $dir); Write-Host ('Downloading {0} ...' -f $env:DOCKER_COMPOSE_URL); Invoke-WebRequest -Uri $env:DOCKER_COMPOSE_URL -OutFile $plugin; Write-Host ('Verifying sha256 ({0}) ...' -f $env:DOCKER_COMPOSE_SHA256); if ((Get-FileHash $plugin -Algorithm sha256).Hash -ne $env:DOCKER_COMPOSE_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Verifying install ("docker compose version") ...'; docker compose version; $link = ('{0}\docker\docker-compose.exe' -f $env:ProgramFiles); Write-Host ('Linking {0} to {1} ...' -f $plugin, $link); New-Item -ItemType SymbolicLink -Path $link -Target $plugin; Write-Host 'Verifying install ("docker-compose --version") ...'; docker-compose --version; Write-Host 'Complete.';
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.