sha256:56cb830d5214a985bf883c5c20bce067e352e5bfccfb2a87c44ab6202931374d
OS/ARCH
Compressed size
2.34 GB
Last pushed
4 days by doijanky
Type
Image
Vulnerabilities
Manifest digest
sha256:43295e24d9571cbc4a77945302868f7a8c8dd222312e92c6b8ded4fa69c4f94e
0
Apply image 10.0.26100.32230
1.52 GB
1
Install update 10.0.26100.33438
934.57 MB
2
powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]
1.28 KB
3
powershell -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);
385.91 KB
4
powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_VERSION=29.8.1
1.26 KB
5
powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_URL=https://download.docker.com/win/static/stable/x86_64/docker-29.8.1.zip
1.29 KB
6
powershell -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.';
20.93 MB
7
powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_BUILDX_VERSION=0.37.1
1.29 KB
8
powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_BUILDX_URL=https://github.com/docker/buildx/releases/download/v0.37.1/buildx-v0.37.1.windows-amd64.exe
1.28 KB
9
powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_BUILDX_SHA256=3904abb2802f9bd83a2bf483b35bba81c57a4e0baff981e6886564c461f908b3
1.26 KB
10
powershell -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.';
24.01 MB
11
powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_COMPOSE_VERSION=5.5.1
1.26 KB
12
powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_COMPOSE_URL=https://github.com/docker/compose/releases/download/v5.5.1/docker-compose-windows-x86_64.exe
1.29 KB
13
powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_COMPOSE_SHA256=a3c0c73033eaede90210345d0cc2233edf4fab8fe0282a91dad8fd8436809d2f
1.3 KB
14
powershell -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.';
11.92 MB