Share:
Twitter
LinkedIn
Facebook
Reddit
Whatsapp
Follow by Email
Reading Time: 2 minutes

Recently Microsoft announced the new Windows Container Image to go along with the Windows Server Core and Nano Server container images. The reason we now have this new container image is that Microsoft has listened to customer feedback. With this new image, customers who are interested in moving legacy applications into containers are able to receive the benefits of container orchestration and management technologies like Kubernetes without the need of a code rewrite. With this new container image, you could also look at automated UI tests as part of your CI/CD processes.

The Current Microsoft Windows Container Base Images

As of writing this article Microsoft has 3 container images. Bellow is a list of the Windows Insiders Base Images. You need to be running the latest release of Windows 10 Insider Preview to be able to use them. Docker for Windows will also need to be installed. Read how to do this here.

mcr.microsoft.com/nanoserver-insider
mcr.microsoft.com/windowsservercore-insider
mcr.microsoft.com/windows-insider

How do you get it?

This bit is easy. Open up PowerShell and use the following command.

docker pull mcr.microsoft.com/windows-insider:latest

I know you should not always use the latest tag but its just easier than typing in the version number Microsoft has assigned to it.

How do you run it?

This also is easy. To run the Windows insider container, in the same PowerShell window type the following command. I am going to add PowerShell on to the end of the command, just so we have something to look at.

docker run mcr.microsoft.com/windows-insider:latest powershell

You will now be at a PowerShell prompt inside the container. Have a look around.

You can also use the container image to make your own images. For this you can use dockerfiles. I will hopefully go into dockerfiles in more detail in future posts.

Thanks for reading and I hope you found this article helpful. If you have any questions reach out in the usual methods.

Share:
Twitter
LinkedIn
Facebook
Reddit
Whatsapp
Follow by Email

Pixel Robots.

I’m Richard Hooper aka Pixel Robots. I started this blog in 2016 for a couple reasons. The first reason was basically just a place for me to store my step by step guides, troubleshooting guides and just plain ideas about being a sysadmin. The second reason was to share what I have learned and found out with other people like me. Hopefully, you can find something useful on the site.

0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *