How to create a windows container for docker?

0

Good afternoon,

I have a problem that I can not solve. So ... I need to build a development environment with OS 10 windows. In this environment I need to have all the necessary settings to develop a web application in C #. So I need this machine installed besides the OS, also VS2012, .Net frameworks packages and any other application that is necessary for the environment to work. I would like to mount an image with these settings so I can emulate a container using docker. The problem is that I can not find a windows image for docker. Can someone help me? Has anyone done this yet?

    
asked by anonymous 01.03.2018 / 20:53

1 answer

0

Microsoft has images available on the docker site, such as these

link

link

There is also content in the Microsoft documentation on how to use them. link

For VS2012 ideally you have it installed on your machine and not in the docker container, use docker as the development environment and you can also use it for production.

    
01.03.2018 / 21:41