Namespace
library
Image / Tag
openjdk:27-ea-33-jdk-windowsservercore-ltsc2025
Content Digest
sha256:1f13c1b9e85988e8731576fb67cd06d8378354621b87d2d83768d13a4779acd5
Details
Created

2026-08-04 01:00:55 UTC

Size

2.4 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-27

JAVA_SHA256

b0cb0a5e7a3a55c33156aafff55edd46f46b7e7f306743285691c76bc7d79263

JAVA_URL

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

JAVA_VERSION

27-ea+33


Layers

[#000] sha256:0938cf51b672b81c9804d1d5f0c57031c931f41b279270e84820c63642d6a3bd - 59.05% (1.42 GB)

[#001] sha256:e24b28706e4e5f31fae7935e5a79e6df5d7a2eb3e69c8c19ca723f41f0b45f6f - 32.25% (793 MB)

[#002] sha256:0a35ca151f110438c3c4bfe658e4db1feccc940c5c87e053e4cb9688768ac883 - 0.0% (1.31 KB)

[#003] sha256:57e45ff04c56a7871831e4d2309fc5d5074bbf584bf340962c599ff05c292bf4 - 0.02% (387 KB)

[#004] sha256:055dde483976554840827cf4807a92d9d536f7e19d70d1f8dad5f511ba79626f - 0.0% (1.23 KB)

[#005] sha256:426385c908ca9e619050b8a9e49c3721f30a76ffebd3fa9ebf1f1e654f706056 - 0.01% (376 KB)

[#006] sha256:c831c66cc6729a98059290789f4f2541c5988337eb70cb994b5f74a3e366c24e - 0.0% (1.26 KB)

[#007] sha256:12759576ea7e027c985cf2971413534af9590ca5d22d12202923e53f1673cff7 - 0.0% (1.23 KB)

[#008] sha256:ec9698a4b8944a28d4b6a1223b0f28da4c76aea52c2829302556d90585cbb17a - 0.0% (1.27 KB)

[#009] sha256:205ff888e3d6db6f569160a0df896b1e41117503e8a15ccf66b16c956c361f43 - 8.67% (213 MB)

[#010] sha256:ee87e5af35949d4b83c0b33755ab8aad484e2e9f7c5a6fe9ebf3a36279fffc73 - 0.0% (1.27 KB)


History
2026-01-11 09:57:36 UTC

Apply image 10.0.26100.32230

2026-07-11 23:02:35 UTC

Install update 10.0.26100.33158

2026-08-04 00:59:44 UTC

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

2026-08-04 01:00:21 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-08-04 01:00:21 UTC

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

2026-08-04 01:00:27 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-08-04 01:00:28 UTC

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

2026-08-04 01:00:28 UTC

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

2026-08-04 01:00:29 UTC

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

2026-08-04 01:00:54 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-08-04 01:00:55 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