Shahar Hamuzim Rajuan
Shahar Hamuzim Rajuan

Reputation: 6129

Docker image for windows 64bit

I got my Docker up and running on windows,

Now I want to make a container from my application that needs to be installed on a windows server 64bit.

Is there a clean image of windows server that I can use?

I looked in dockerhub and saw some images that I can use like this one.

But I want to make sure I'm doing it right, Can I work with this image to install my app?

Upvotes: 0

Views: 2380

Answers (1)

Chris Lawrence
Chris Lawrence

Reputation: 491

I believe the question that you are asking here is, what Windows Server base image should you use to create your new image from? This really depends on the requirements of the application that you are running in the container, but Microsoft has official base images for both Windows Server Core and Nano Server available on Docker Hub, the links are as follows:

Server Core base image - https://hub.docker.com/r/microsoft/windowsservercore/

Nano Server base image - https://hub.docker.com/r/microsoft/nanoserver/

Please also note that Microsoft have other images available which are based on the above images, such as one which includes ASP.Net Core ( https://hub.docker.com/r/microsoft/aspnetcore/ ) which may make a better base image for you, it really depends on the requirements of your application.

Finally - the full list of Microsoft provided images can be found at https://hub.docker.com/u/microsoft/

I hope the above is helpful.

Upvotes: 1

Related Questions