Dockerizing .NET Core Apps
I have already written two articles about the basics of Docker. While these should provide a general overview of you technology, I would like to illustrate a concrete application example today. I will show you the whole process, from writing a simple application to using it in the form of a Docker Container. If you haven’t read my previous articles, you may not have the idea why you should use Docker at all. For a full explanation, I refer to my other articles which you can check out [here]({{site.baseurl }}{% post_url 2018-07-01-docker-getting-started %}) and [here]({{site.baseurl }}{% post_url 2018-07-08-docker-installation-and-first-steps %}). However, I would still like to comment briefly on the idea. Imagine you are writing a.NET application. To use your application you now need a special version of the.NET framework, as well as possibly a suitable database and other dependencies. ...