How to Docker Compose Vue.js, .NET Core and MSSQL

Introduction In this blog post we will see how to dockerize ASP.NET Core application, which connects to a MSSQL database and uses Vue.js as front-end. After that we will use them together with Docker Compose. We will use these projects in this tutorial. I have to admit it was harder than I thought it would be. Backend Application Let’s start with exploring our backend application. It consists of a single endpoint which returns information about a phone book entry:...

March 21, 2021 · Hasan Hasanov

How to Host .NET Core Applications in VPS Using Docker

Introduction This is a continuation from my previous article Where To Host .NET Applications . Go check that one too. In this blog post we will create a simple .NET application. Then we will dockerize it the easy way and host it in a Linux VPS so that the whole world can see it. Create simple application Let’s start with creating the application. As I said the application will be a simple one....

February 13, 2021 · Hasan Hasanov