Namespace
library
Image / Tag
openjdk:13-ea-13-jdk-windowsservercore-1809
Content Digest
sha256:8f1aa899ea54eb480addf75491354617f9feabf7ce66bd3d0c754acca4362a87
Details
Created

2019-03-28 10:17:40 UTC

Size

2.19 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-13

JAVA_SHA256

a144c7e470d084e5ce22c6cc484db01c62634b99a82e2b54e87b5aad05bfd9c1

JAVA_URL

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

JAVA_VERSION

13-ea+13


Layers

[#000] sha256:65014b3c312172f10bd6701a063f9b5aaf9a916c2d2cb843d406a6f77ded3f8d - 65.33% (1.43 GB)

[#001] sha256:d48f500354393ec6614f6435639636db175e3ac6c3d1a3d1857b609789de7a7d - 26.42% (592 MB)

[#002] sha256:5e195200ec7c843146b67b39b26ec25466f3b96bce8db32ff3a809a25fdece80 - 0.0% (1.18 KB)

[#003] sha256:613244f30bb1a7b8ec62a7335f06e3cab5ea68622dead5ce1f837b9c3f829daf - 0.18% (4.09 MB)

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

[#005] sha256:d896352a7b9155c9918d35efff6bbb85dc04d7e3ce305cc536e6be58258951d7 - 0.01% (292 KB)

[#006] sha256:4994dadd22814b53d980c8041ba7e06c9126d633b69174ce8af3a166a9961b33 - 0.0% (1.17 KB)

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

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

[#009] sha256:e84a188e1458f914bb56df71ad07e27c39fd8151cabe8834cc0cf9496bc7344e - 8.05% (180 MB)

[#010] sha256:cf3fbad518cafed73e216ba98d546202613b103742ebc52c13d95b0bfcaab10d - 0.0% (1.18 KB)


History
2018-09-15 09:10:26 UTC

Apply image 1809-RTM-amd64

2019-03-09 03:10:13 UTC

Install update 1809-amd64

2019-03-16 09:52:18 UTC

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

2019-03-28 10:15:19 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:15:21 UTC

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

2019-03-28 10:15:49 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-28 10:15:50 UTC

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

2019-03-28 10:15:52 UTC

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

2019-03-28 10:15:53 UTC

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

2019-03-28 10:17:38 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-28 10:17:40 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