Sign inSign up
docker logo

docker:29.8.1-windowsservercore-ltsc2022

Also known as:
29-windowsservercore
29-windowsservercore-ltsc2022
29.8-windowsservercore
29.8-windowsservercore-ltsc2022
29.8.1-windowsservercore
windowsservercore
windowsservercore-ltsc2022
Developer tools
Index digest

sha256:87045610be5a75da485a0b776b16a1d8db5b9807eebcdc7fbcf244d68e3de767

OS/ARCH

windows/amd64

Compressed size

2.12 GB

Last pushed

3 days by doijanky

Type

Image

Vulnerabilities

0
7
4
0
1

Manifest digest

sha256:df3d40210c8f4d8794aa8b543071c9bfe7132d27b8c1beffbc9b1586494c2ab9

Layers (15)

docker:29.8.1-windowsservercore-ltsc2022
0
7
4
0
1

0

Apply image 10.0.20348.4294

1.49 GB


1

Install update 10.0.20348.5622

730.47 MB


2

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]

1.32 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);

360.08 KB


4

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_VERSION=29.8.1

1.3 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.31 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.9 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.31 KB


9

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_BUILDX_SHA256=3904abb2802f9bd83a2bf483b35bba81c57a4e0baff981e6886564c461f908b3

1.33 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.';

23.98 MB


11

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_COMPOSE_VERSION=5.5.1

1.34 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.31 KB


13

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV DOCKER_COMPOSE_SHA256=a3c0c73033eaede90210345d0cc2233edf4fab8fe0282a91dad8fd8436809d2f

1.29 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.85 MB