Namespace
library
Image / Tag
openjdk:16-ea-3-jdk-windowsservercore-1809
Content Digest
sha256:38f259bc0017d69e26679f5573c22fba22470a188071f7b211da6ffec478dce4
Details
Created

2020-06-26 19:56:44 UTC

Size

2.32 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-16

JAVA_SHA256

39174d2d67a59005eae0e5d2e8f106647c3c8f4085b0fd82263903ce70c22e63

JAVA_URL

https://download.java.net/java/early_access/jdk16/3/GPL/openjdk-16-ea+3_windows-x64_bin.zip

JAVA_VERSION

16-ea+3


Layers

[#000] sha256:4612f6d0b889cad0ed0292fae3a0b0c8a9e49aff6dea8eb049b2386d9b07986f - 68.99% (1.6 GB)

[#001] sha256:666079ee04606f07f4a27dd98526f5049ef8fed93e347d8b4c447b0d5060c77d - 23.11% (549 MB)

[#002] sha256:f841c6a0c622cd36b5b2688011a224ac3e8e96273758f4a2804f2f3f099f267d - 0.0% (1.13 KB)

[#003] sha256:a03d8ec06304524cdb2b900879af7ed2db71d5e36e5f2306b46859250255390d - 0.19% (4.54 MB)

[#004] sha256:9a960e13341a49318f499be6c03e865403f941af98f4357457356c71e939f307 - 0.0% (1.14 KB)

[#005] sha256:de2372a3211da53d466e7b49c856947d71b09a77f5661fc1da11bd38481714f1 - 0.01% (316 KB)

[#006] sha256:0fbd5646d28a105bbc8415819b8ca8d8c5a0337acc3b2af8ff1b3ba536834d33 - 0.0% (1.12 KB)

[#007] sha256:b5ad25b2bf0cd6320001ce3e117677f614941cd78a66ddff91c444e640ea1fff - 0.0% (1.1 KB)

[#008] sha256:785c6c06d1cfcd1c1c59cc66bcc9273aa42c4626d2446382a99fdfee6bb5850e - 0.0% (1.12 KB)

[#009] sha256:c1ccf9e11e44c8697569a1f9aec2d0e4057b97ff41f298b338b2f33495debde4 - 7.7% (183 MB)

[#010] sha256:056b46f6b15aecc289df3ad242c6a09d769587f5b4f227b1bb9e2ceede646d89 - 0.0% (1.1 KB)


History
2020-05-07 05:09:25 UTC

Apply image 1809-RTM-amd64

2020-06-04 01:48:42 UTC

Install update 1809-amd64

2020-06-09 22:33:19 UTC

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

2020-06-09 22:34:11 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

2020-06-18 21:14:30 UTC

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

2020-06-18 21:14:54 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

2020-06-26 19:54:47 UTC

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

2020-06-26 19:54:48 UTC

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

2020-06-26 19:54:49 UTC

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

2020-06-26 19:56:43 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.'

2020-06-26 19:56:44 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