Hey :)<p>I developed a software which is a plain simple monolithic web application. Pretty basic: ASP.NET with angular and SQL Server as a database. Currently I use one windows server for each customer. I do this to make sure, that no software bug accidently shows data of customer A to customer B (privacy is the most important priority).<p>I am considering containerizing the application. From what I have heard, the handling and updating of the software is easier.<p>Do you know of any good resources to learn more about this topic? I am still missing the conceptual basics.<p>I appreciate any help you can give me! Regards!
I am pretty sure recent versions .NET (especially .NET Core) are fully containerisable. For this very specific technology, this is the start:<p><a href="https://docs.docker.com/samples/dotnetcore/" rel="nofollow">https://docs.docker.com/samples/dotnetcore/</a><p><a href="https://docs.microsoft.com/en-us/dotnet/core/docker/build-container?tabs=windows" rel="nofollow">https://docs.microsoft.com/en-us/dotnet/core/docker/build-co...</a><p><a href="https://code.visualstudio.com/docs/containers/quickstart-aspnet-core" rel="nofollow">https://code.visualstudio.com/docs/containers/quickstart-asp...</a><p>Be sure you really know what your are doing and understand basic security and containers concepts; there are tons of write ups and articles with the basics.<p><a href="https://docs.microsoft.com/en-us/visualstudio/docker/tutorials/docker-tutorial" rel="nofollow">https://docs.microsoft.com/en-us/visualstudio/docker/tutoria...</a><p>Regarding security, I made a blog post years ago on a technology agnostic approach to Docker image security. It seems to be still up to date.<p><a href="https://sysdogs.com/articles/how-to-secure-container-image" rel="nofollow">https://sysdogs.com/articles/how-to-secure-container-image</a>
I'd start with any old Docker tutorial (probably the official docs). Since your case is so simple, I bet you'll be able to pick up the concepts very quickly.<p>Another user recommended this, but I'd like to repeat it: <a href="https://docs.docker.com/samples/dotnetcore/" rel="nofollow">https://docs.docker.com/samples/dotnetcore/</a><p>It'll hopefully end up being something like the first example in that link. A simple build step, a copy, and then running.<p>For SQL Server, you can either use a managed DB like RDS, or also run it in a Docker container. Up to you. Without knowing your situation, I'd personally lean towards RDS, but do some research for yourself to see what you think.