Search code examples
windowsdockerwindows-update

Using docker to be independent from Windows Updates


Our partners want to see information about which of the Windows Updates are compatible with our application. Of course, this is huge amount of work to test all Windows updates.

I thought that we can use Docker to containerize our application and ask all our partners to use same Docker image. So we will periodically test our app with new bunch of updates and send new docker image to all our partners.

I'm new in Docker and I'm not sure that this is a problem that can be solved by it. Is process running in Docker independent from Windows Updates installed on host machine? Is it good idea to use Docker for this purpose?


Solution

  • Its a good idea. In general - Containerized application deployment is a great idea. You setup, test and validate the environment and you are pretty sure about its stability.

    Is process running in Docker independent from Windows Updates installed on host machine?

    For Windows container using virtualization technology and are independent of updates in host system.