What is the best practice for hosting legacy ASP.NET web form applications in Windows Containers?
One image per web app? Compiled web apps mounted into a container of the ASPNET image at docker run?
What is the best practice for hosting legacy ASP.NET web form applications in Windows Containers?
One image per web app? Compiled web apps mounted into a container of the ASPNET image at docker run?
For each application e.g. asp.net application, web service you would have a docker image somewhere in your private registry e.g. azure container registry. After building all your images, you need orchestration between all of containers from these images. For example, you can use yaml file to define all your services and using docker compose bring up your application with all its dependencies. Here is an example if this.