Namespace
library
Image / Tag
openjdk:27-ea-29-jdk-windowsservercore-ltsc2022
Content Digest
sha256:9a565badbc294d27529c0b4d8bc0c5cd5a9ba14dbe216995daacf86694e3ccfd
Details
Created

2026-07-06 21:51:10 UTC

Size

2.19 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-27

JAVA_SHA256

4883781bf55f6ed0224c10009d257a488a84dd6e41663ff34e762d357acb14be

JAVA_URL

https://download.java.net/java/early_access/jdk27/29/GPL/openjdk-27-ea+29_windows-x64_bin.zip

JAVA_VERSION

27-ea+29


Layers

[#000] sha256:3cc21a1b754848d23f00aa65cb94ec34c9a5dc6028b3aada42039c824738d02f - 63.19% (1.39 GB)

[#001] sha256:6897a04901ec162be0eabd7eb636b5ac50d6e37c880f1db618610f2d777b1ce6 - 27.29% (613 MB)

[#002] sha256:a04ff882821e31c0ef42e848e69c22699b46cd39d1c5babe967d4edaf6d555d1 - 0.0% (1.29 KB)

[#003] sha256:3558a0f556acc9f96401dff45eec8acb3a6c22ac50d9f6e08afa47cfba2de456 - 0.02% (490 KB)

[#004] sha256:b830210ae5cfa4be2b872a21731bc6471a12f9625b911bbbed5bb3a768706058 - 0.0% (1.26 KB)

[#005] sha256:df92ac036ec281d8c7fd80385afad546381d7a5f94b26eafff736d0341157bf6 - 0.01% (344 KB)

[#006] sha256:0170a1f54027c133af1d9942b7092f70eae2481f66524001b14003919216406b - 0.0% (1.3 KB)

[#007] sha256:79c9ea1e49d93517c3df45592502189bc198e06b87a764d3ae815b1f4ee44be2 - 0.0% (1.3 KB)

[#008] sha256:d80cb0ea6e3b82466d465fb1b809a993d9d93f4248df8b21e0e15bd6a6240791 - 0.0% (1.31 KB)

[#009] sha256:ce322d3e2affaca2c85948521bb260f700e4ffe1ef63c68a0a1d8c386e4dbef7 - 9.48% (213 MB)

[#010] sha256:fc4ace6018d61cc4f2bb8a1c6594eb053e18cabeab2444175e704d83c591e701 - 0.0% (1.26 KB)


History
2025-10-09 07:51:18 UTC

Apply image 10.0.20348.4294

2026-06-07 06:43:23 UTC

Install update 10.0.20348.5256

2026-07-06 21:48:03 UTC

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

2026-07-06 21:49:15 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host 'Enabling TLS 1.2 (https://githubengineering.com/crypto-removal-notice/) ...'; $tls12RegBase = 'HKLM:\\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2'; if (Test-Path $tls12RegBase) { throw ('"{0}" already exists!' -f $tls12RegBase) }; New-Item -Path ('{0}/Client' -f $tls12RegBase) -Force; New-Item -Path ('{0}/Server' -f $tls12RegBase) -Force; New-ItemProperty -Path ('{0}/Client' -f $tls12RegBase) -Name 'DisabledByDefault' -PropertyType DWORD -Value 0 -Force; New-ItemProperty -Path ('{0}/Client' -f $tls12RegBase) -Name 'Enabled' -PropertyType DWORD -Value 1 -Force; New-ItemProperty -Path ('{0}/Server' -f $tls12RegBase) -Name 'DisabledByDefault' -PropertyType DWORD -Value 0 -Force; New-ItemProperty -Path ('{0}/Server' -f $tls12RegBase) -Name 'Enabled' -PropertyType DWORD -Value 1 -Force; Write-Host 'Complete.'

2026-07-06 21:49:16 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV JAVA_HOME=C:\openjdk-27

2026-07-06 21:49:25 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $newPath = ('{0}\bin;{1}' -f $env:JAVA_HOME, $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); setx /M PATH $newPath; Write-Host 'Complete.'

2026-07-06 21:49:25 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV JAVA_VERSION=27-ea+29

2026-07-06 21:49:26 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV JAVA_URL=https://download.java.net/java/early_access/jdk27/29/GPL/openjdk-27-ea+29_windows-x64_bin.zip

2026-07-06 21:49:28 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV JAVA_SHA256=4883781bf55f6ed0224c10009d257a488a84dd6e41663ff34e762d357acb14be

2026-07-06 21:51:09 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading {0} ...' -f $env:JAVA_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $env:JAVA_URL -OutFile 'openjdk.zip'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:JAVA_SHA256); if ((Get-FileHash openjdk.zip -Algorithm sha256).Hash -ne $env:JAVA_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; New-Item -ItemType Directory -Path C:\temp | Out-Null; Expand-Archive openjdk.zip -DestinationPath C:\temp; Move-Item -Path C:\temp\* -Destination $env:JAVA_HOME; Remove-Item C:\temp; Write-Host 'Removing ...'; Remove-Item openjdk.zip -Force; Write-Host 'Verifying install ...'; Write-Host ' javac --version'; javac --version; Write-Host ' java --version'; java --version; Write-Host 'Complete.'

2026-07-06 21:51:10 UTC

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

Danger Zone
Delete Tag

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.

Delete