docker-library / openjdk

Docker Official Image packaging for EA builds of OpenJDK from Oracle
http://openjdk.java.net
MIT License
1.14k stars 471 forks source link

issues when using Windows Server container images with the February 11, 2020 security update release #395

Closed pso-digital-identity closed 4 years ago

pso-digital-identity commented 4 years ago

Hi,

After applying the February 11 security update to a Windows 2016 host, my containers are silently failing as described as symptom 4 here: https://support.microsoft.com/en-us/help/4542617/you-may-encounter-issues-when-using-windows-server-docker-container-im

I'm using openjdk:11-jdk-windowsservercore-ltsc2016

It looks like that image is based on windows version 10.0.14393.3443 (January update) (source: https://github.com/docker-library/repo-info/blob/master/repos/openjdk/remote/11-jdk-windowsservercore-ltsc2016.md)

According to the MS article I need to match the version of the container image with the version of my container host operating system which is currently 10.0.14393.3504 (February update).

Will the 11-jdk-windowsservercore-ltsc2016 image get updated to this new Windows version automatically at some point? Or do i need to request an update somewhere?

Best regards Peter

mjvankampen commented 4 years ago

Doesn't the CI just need a kick? I don't see an explicit version anywhere in the code. There seems to be a build running but that's been stuck for four days or so.

yosifkit commented 4 years ago

We periodically pull the windows base images and rebuild to get the patch updates. Since your host is newer, you should be able to run them with --isolation=hyperv as a workaround.

It looks like our Windows builder is having issues; I'm working to get it back online and building.

yosifkit commented 4 years ago

Server is back up and builds are in process.

pso-digital-identity commented 4 years ago

Thanks a lot :-)