Namespace
library
Image / Tag
openjdk:13-ea-14-jdk-windowsservercore-1709
Content Digest
sha256:e59ce6c55c3fbd63b5f57490ca895afc1948e4f3aaa9b8a3cb2c73a738043740
Details
Created

2019-03-30 10:18:05 UTC

Size

3.18 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-13

JAVA_SHA256

709c0cd64f9c49e40817e328fb56e8153d56f206db52fcd00e438880f09da8a5

JAVA_URL

https://download.java.net/java/early_access/jdk13/14/GPL/openjdk-13-ea+14_windows-x64_bin.zip

JAVA_VERSION

13-ea+14


Layers

[#000] sha256:5847a47b8593f7c39aa5e3db09e50b76d42aa8898c0440c70cc9c69747d4c479 - 66.61% (2.12 GB)

[#001] sha256:7f4a716683dc03db3521ed040924c24ea9bd17c7f134c09bf22e33f6af33ade8 - 27.43% (893 MB)

[#002] sha256:81856e9377a060d58cb8798fbc456fc8414158afec682bdd098149edc0a7d1fc - 0.0% (1.18 KB)

[#003] sha256:447d66808d19dc7d42a62bfafa6cd128cd924ab86c93d4ba8c29e16c5e0f15e1 - 0.14% (4.58 MB)

[#004] sha256:5f217594fb26f582630645d54b5430e01fbcd6036c7b5b6f2099c8655fc3437b - 0.0% (1.17 KB)

[#005] sha256:542219958719a387de5e217d15116f6f1645cd9048653e6cbc65b518fa4ae6c5 - 0.14% (4.54 MB)

[#006] sha256:954c9beebfb7b80a2389068a3cef2fa0931874fcdefaefcae87d632643f6c06f - 0.0% (1.18 KB)

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

[#008] sha256:a92827dc1cb134545b4c9329a8ff0c9f8d0391478a85a75306a7e4c5ee2b0c92 - 0.0% (1.18 KB)

[#009] sha256:a80779c94010f52ce30421f43c027bfefe4785caa078de08069ca92facc4145d - 5.68% (185 MB)

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


History
2017-09-29 14:43:28 UTC

Apply image 10.0.16299.15

2019-03-09 05:26:00 UTC

Install update 10.0.16299.1029

2019-03-16 09:35:33 UTC

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

2019-03-28 10:07:46 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-03-28 10:07:48 UTC

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

2019-03-28 10:08:35 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-03-30 10:15:34 UTC

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

2019-03-30 10:15:35 UTC

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

2019-03-30 10:15:37 UTC

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

2019-03-30 10:18:03 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-03-30 10:18:05 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