Namespace
library
Image / Tag
openjdk:11.0.2-windowsservercore-1803
Content Digest
sha256:bc9cd256bd8c609715c8ec3223e19a5b07dbf036803d0cd085f0a7952e43bd5b
Details
Created

2019-04-12 00:57:39 UTC

Size

2.28 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-11

JAVA_SHA256

cf39490fe042dba1b61d6e9a395095279a69e70086c8c8d5466d9926d80976d8

JAVA_URL

https://download.java.net/java/GA/jdk11/9/GPL/openjdk-11.0.2_windows-x64_bin.zip

JAVA_VERSION

11.0.2


Layers

[#000] sha256:d9e8b01179bfc94a5bdb1810fbd76b999aa52016001ace2d3a4c4bc7065a9601 - 67.9% (1.55 GB)

[#001] sha256:6a8147bebfc5d75cdbc4154ff5ea5ec95231702321385b172e1323577bf689ef - 24.41% (569 MB)

[#002] sha256:37b6568b4a1267078fda687a318c987c4cb5a7d81edad72ed156b23333c61042 - 0.0% (1.19 KB)

[#003] sha256:eb3b0617bf0f6da87ada2e9f02f200964baa7b01bf5d29da578c7cb577f85d86 - 0.19% (4.51 MB)

[#004] sha256:dcbaef244872b6190ca795ba2320bc69f96072c38f97f2de3609bbe7aa8b56ca - 0.0% (1.18 KB)

[#005] sha256:a8b3aa4836bb5f9eb831df57ec56067f9f4d363705bd6e8acf51287208e73901 - 0.01% (289 KB)

[#006] sha256:95e9c13fd1490951ead080ad2e01b24ac4056fb8bee93fde7882db71f5914b8c - 0.0% (1.17 KB)

[#007] sha256:76e8e26d0839c23d5e82e5cb6b282f09e72eaa3ac596d5543172d22255844b69 - 0.0% (1.18 KB)

[#008] sha256:91d81841d2c16808e7fca413fee32f831169591e64514e8be84a6192b8fe2b77 - 0.0% (1.17 KB)

[#009] sha256:47b0049e10f14d79b0cafa50ee00f964b0737ecb1e86451f9ea54b613be3750b - 7.49% (174 MB)

[#010] sha256:17b915a46116fc2cdac31c1cda8b5214f5a0015a851f5da1baa0c128abee1738 - 0.0% (1.17 KB)


History
2018-04-12 09:20:54 UTC

Apply image 1803-RTM-amd64

2019-04-04 18:30:12 UTC

Install update 1803-amd64

2019-04-11 23:03:13 UTC

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

2019-04-12 00:26:53 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

2019-04-12 00:55:18 UTC

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

2019-04-12 00:55:48 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

2019-04-12 00:55:49 UTC

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

2019-04-12 00:55:50 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV JAVA_URL=https://download.java.net/java/GA/jdk11/9/GPL/openjdk-11.0.2_windows-x64_bin.zip

2019-04-12 00:55:52 UTC

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

2019-04-12 00:57:37 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading {0} ...' -f $env:JAVA_URL); 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 'Verifying install ...'; Write-Host ' java --version'; java --version; Write-Host ' javac --version'; javac --version; Write-Host 'Removing ...'; Remove-Item openjdk.zip -Force; Write-Host 'Complete.'

2019-04-12 00:57:39 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