Dockerizing a Windows Service
问题 I am new to docker and I have an application including a set of windows services (.NET). I d like to run it into a docker container. What should I do ? 回答1: In general, you should choose a base image which has the necessary libraries already installed on it as much as possible instead of taking a very base image such as plain Linux or Windows and installing on it. In your case, select a docker image which has .NET installed on it.This image for instance The ideal flow is as follows. Select