Namespace
library
Image / Tag
openjdk:18-ea-30-windowsservercore-ltsc2016
Content Digest
sha256:1fd5bb2e93a5138257dcdbf710950a3f9a5ec16259914c1287ae2155ec999311
Details
Created

2022-01-12 05:28:52 UTC

Size

6.02 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-18

JAVA_SHA256

57e77e09ea1801bd17d69a31b973074ea5bfeafdc150ca0376b7df8f593629f3

JAVA_URL

https://download.java.net/java/early_access/jdk18/30/GPL/openjdk-18-ea+30_windows-x64_bin.zip

JAVA_VERSION

18-ea+30


Layers

[#000] sha256:3889bb8d808bbae6fa5a33e07093e65c31371bcf9e4c38c21be6b9af52ad1548 - 62.97% (3.79 GB)

[#001] sha256:8428508ffd63b4af1ba690ec41e82a116f10ec6c3fb70962348f5448d42e5835 - 34.17% (2.06 GB)

[#002] sha256:9b5116c05ddf6ecb5a348f7628e3f3264afbb9909d86798316dbaff4a0e991a2 - 0.0% (1.38 KB)

[#003] sha256:f5a804249f990290da306f883f1e85db00728eaab29aa4bd99a9833b830cb158 - 0.01% (333 KB)

[#004] sha256:f418210b92cf48480e49526c64c5529352c5dc590806a907dba4bc714361fd75 - 0.0% (1.39 KB)

[#005] sha256:6582a2df242e88857ccaddcf90769c8992a2e3abf60646691f2ed0cb66d838ac - 0.01% (326 KB)

[#006] sha256:affe9c86a7c87231c419d9a4f077c36c5cc3067fc494b3653225feaa048e30c0 - 0.0% (1.4 KB)

[#007] sha256:540d836215d4d2d7aaf5e0cd2188d7d662185176940cfa4424d2eb00ec9a950f - 0.0% (1.4 KB)

[#008] sha256:781f33d11ea470ac6b9907f82a8648da3d746d237f42227c9c568e3d0f70d43e - 0.0% (1.41 KB)

[#009] sha256:b93895f56ef30f8abe8aadbb053f3f1d40b1b9882529429e52644f501c7951e6 - 2.85% (176 MB)

[#010] sha256:45cfd849a9410fff478298ef90cce2ff39932db904dbe0c9668859e6c8e24dd2 - 0.0% (1.38 KB)


History
2016-11-19 17:05:00 UTC

Apply image 1607-RTM-amd64

2022-01-06 14:33:00 UTC

Install update ltsc2016-amd64

2022-01-11 19:14:55 UTC

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

2022-01-12 05:16:55 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.'

2022-01-12 05:26:04 UTC

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

2022-01-12 05:27:06 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.'

2022-01-12 05:27:07 UTC

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

2022-01-12 05:27:09 UTC

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

2022-01-12 05:27:10 UTC

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

2022-01-12 05:28:50 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.'

2022-01-12 05:28:52 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