Namespace
library
Image / Tag
openjdk:26-ea-7-jdk-windowsservercore-ltsc2025
Content Digest
sha256:16b980963fca2dd27f4af95aba5a00a4fe3e6748643e90733115fc1ca1c4d08f
Details
Created

2025-07-21 20:31:36 UTC

Size

3.46 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-26

JAVA_SHA256

0e822d301f786433dac5a72a45c3ae8e238e4559aff89028082d91c33f437c35

JAVA_URL

https://download.java.net/java/early_access/jdk26/7/GPL/openjdk-26-ea+7_windows-x64_bin.zip

JAVA_VERSION

26-ea+7


Layers

[#000] sha256:1317fe15185685e9cd27f7542cd96f4847343401288a8b6798273a4ac60844eb - 59.7% (2.06 GB)

[#001] sha256:49ebc78effce2335b8fe04c34f5f1f3e33e513d5a7831fa81718af6737b3d654 - 34.38% (1.19 GB)

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

[#003] sha256:b7a758bb41791766ec0799feff2bbf01a297b56f1c259a3e3d22051b630b25fa - 0.01% (390 KB)

[#004] sha256:638a9e6cf10235c8fd997f37696900af2feb715a37657d9fae7afe044f2b0caf - 0.0% (1.37 KB)

[#005] sha256:b9fe2ed50b4976afc4e9510c35ba969406d9ada99586046b882f840b09b01be0 - 0.01% (371 KB)

[#006] sha256:52c169aa70cc14b75cb3bf661673b24713b0a03fe8b2593567b7d8d8e9a3463e - 0.0% (1.32 KB)

[#007] sha256:36677d502b1531d38153ac16bfa37001f36841635ab6d6ce1351c16d9d0f65a9 - 0.0% (1.32 KB)

[#008] sha256:7c80b6a9f3cb17f17b02b91e5eef9ef573b48130147567b3dd72c88d414059ee - 0.0% (1.34 KB)

[#009] sha256:1c90f769107e84fe51dc25c2d85fe33e723727f9e32979599a8a1eca82257cd0 - 5.9% (209 MB)

[#010] sha256:ca75c980740fa6574f920cb71805d03c26f81af0dfb2e38e16ee0a7834d5dab0 - 0.0% (1.29 KB)


History
2024-12-08 22:41:37 UTC

Apply image 10.0.26100.2605

2025-07-05 18:40:54 UTC

Install update 10.0.26100.4652

2025-07-21 20:31:02 UTC

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

2025-07-21 20:31:10 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.'

2025-07-21 20:31:11 UTC

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

2025-07-21 20:31:16 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.'

2025-07-21 20:31:17 UTC

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

2025-07-21 20:31:17 UTC

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

2025-07-21 20:31:17 UTC

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

2025-07-21 20:31:36 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.'

2025-07-21 20:31:36 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