SOLVED

How are you expected to adminster nanoserver inside container if powershell is removed?

Iron Contributor

As per release notes nano server was optimized by removing powershell from it. How are you expected to administer it (or build using dockerfile) for that matter if no powershell is available?

8 Replies
You can always install PowerShell when creating your own Nano image.

Yes, so once you access nanoserver remotely, what do you on console if there is no powershell?

best response confirmed by Gregory Suvalian (Iron Contributor)
Solution

With a Dockerfile, the multi-stage builds introduced in Docker 17.05 and COPY deployment.

 

Here is an example to put Node.js into a nanoserver-insider image without PowerShell: https://github.com/StefanScherer/dockerfiles-windows/blob/07cedcf2cc93e669bba9c961121feda6f43dab59/n...

 

 

If you need PowerShell and can't deploy with just COPY instructions and simple environment changes with setx.exe, then you can use "FROM microsoft/nanoserver-insider-powershell" which is slighly bigger than the "microsoft/nanoserver-insider" image.

 

I did not realize that there is separate image with powershell baked in. Based on release anouncement it looked like that there will be no base images anymore with powershell.

Hi Gregory !
Now we can use a version of nano server container with powershell, but I have not good news about, It's not very useful that we can't connect to a remote PSsession to interact with containers. It will be a easier way to work with it.
Hope Windows Server Team light us with this.
That's a great job Stefan ! Congrats !
I think your solution it's great, but if we want to deploy/install a role?
I'm trying to deploy IIS and I have not luck at all, no PS session, no dism, not nanoserverpackage, well nothing seems to work here. Size is important, sure, but it have to be useful and easy to deal with it, otherwise sysadmins does not interesting at all.
Thanks for your post and job.
1 best response

Accepted Solutions
best response confirmed by Gregory Suvalian (Iron Contributor)
Solution

With a Dockerfile, the multi-stage builds introduced in Docker 17.05 and COPY deployment.

 

Here is an example to put Node.js into a nanoserver-insider image without PowerShell: https://github.com/StefanScherer/dockerfiles-windows/blob/07cedcf2cc93e669bba9c961121feda6f43dab59/n...

 

 

If you need PowerShell and can't deploy with just COPY instructions and simple environment changes with setx.exe, then you can use "FROM microsoft/nanoserver-insider-powershell" which is slighly bigger than the "microsoft/nanoserver-insider" image.

 

View solution in original post