The latest stable image for Nano Server is 6.0.2-nanoserver-1709. Is 6.0.2 in the works for 1803?
(Looks like a matter of bumping a couple things in https://github.com/PowerShell/PowerShell/blob/master/docker/release/nanoserver/Dockerfile?)
/cc @TravisEz13 Could you please comment?
@jnm2 It takes a few weeks after the image is released before we can bring up a build server. I'm working on getting the build server ready now.
@jnm2 It can take several days to get the server working as our scripts to set up a build machine is intended for a server with the desktop experience and 1709/1803 are not available with the desktop experience.
No docker file changes are needed.
I have a build server ready and I'm making changes to the official build to build for both 1709 and 1803.
FYI, no changes are needed to the docker file because you can specify the tags as args. Here is a command similar to what we use, only with sensitive information removed:
Note: I use 1709 of windowsservercore always because the image is large and because it is not part of the final image there is not need to use 1803, but I leave the parameter in the build because if docker is in process isolation, I must use the container matching the host OS.
done docker run -it mcr.microsoft.com/powershell:6.0.2-nanoserver-1803
I created the nanoserver tag but there is an issue getting it to work on the mcr.microsoft.com preview. you have to use docker run -it microsoft/powershell:nanoserver
Hopefully it will be resolved soon
Up and running with it! Thank you for your speedy response!