Namespace
library
Image / Tag
openjdk:14-ea-18-windowsservercore
Content Digest
sha256:f7265111fa6ee94e1f0d01bbf3288d24b657f5a5c63994984081dd532501057a
Details
Created

2019-10-14 20:23:25 UTC

Size

2.23 GB

Content Digest
Environment
JAVA_HOME

C:\openjdk-14

JAVA_SHA256

3024884ffaf85511ad9f4c56c0308f395fead38b21e7a3493f0d236d0eead801

JAVA_URL

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

JAVA_VERSION

14-ea+18


Layers

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

[#001] sha256:12c8dbabfd62cb512baca43f0d1e9588127e6bd66641e93a5e6f7e89e1bf7656 - 27.79% (636 MB)

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

[#003] sha256:35e4edc5b151a8718942ead643070b21845c3d12b0d461befabb74d317d805cf - 0.19% (4.32 MB)

[#004] sha256:2dfdb9884445edaa0eff19f9c6c36dd2aba40254968842e12323a224b876e019 - 0.0% (1.19 KB)

[#005] sha256:8a495e6df0f5991d27cd1e683c995ebff05ec21cfc40ef37ff121de1883955cc - 0.01% (282 KB)

[#006] sha256:ff88ee1c890bdc6cd097dad0dc637b1c0535e0bd7f50e049532716b765718b36 - 0.0% (1.16 KB)

[#007] sha256:03d9c0acdaec6e5fac4535bb601dc98c33c6d7af17197f11dc5a9133e1a454d9 - 0.0% (1.16 KB)

[#008] sha256:935b7cd0c44a28fc6e9322e1395ed1b40ba872ac4fd786a3901190b9b966f327 - 0.0% (1.16 KB)

[#009] sha256:39ce2f935cbd34ee6d8e0cd201643559a26dcb95a04483197db855a645ce029c - 8.02% (184 MB)

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


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

Apply image 1809-RTM-amd64

2019-10-06 10:02:47 UTC

Install update 1809-amd64

2019-10-09 13:07:48 UTC

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

2019-10-09 18:15:30 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-10-09 18:15:32 UTC

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

2019-10-09 18:15:59 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-10-14 20:21:07 UTC

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

2019-10-14 20:21:08 UTC

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

2019-10-14 20:21:09 UTC

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

2019-10-14 20:23:23 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-10-14 20:23:25 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