SSL Certificates are very necessary for the Trust, Identity and Encryption of an APP. In ASP.NET Core the apps use HTTPS Certificates by default, they use self-signed development certificates for development purpose. So, when you are hosting your app to a Docker Container then it is needed to tell docker where to find this development certificate in the machine. Once Docker knows the location of the HTTPS certificate then your app will start opening with https url, eg https://localhost:8001.
The procedure will be same for the production scenario also. So you can generate a free HTTPS certificate from Let’s Encrypt, then tell your Docker app (which is running in Azure or AWS) to find the HTTPS certificate from a location.
Page Contents
First create a new ASP.NET Core App in Visual Studio and name it DockerHttps, and make sure to check the option that says – Place solution and project in the same directory in Visual Studio. Next, select the template – ASP.NET Core Web App this will create a basic ASP.NET Core Razor Pages based app.
After that add Dockerfile to the app.
Check the below 90 seconds video below which shows the app creation along with the Dockerfile creation.
Kindly note I am using Linux containers.
Our ASP.NET Core app is ready to be hosted on Docker with HTTPS Certificate but before that we need to understand 2 important topics which are:
Docker Environment Variables are used for configuring Docker Images and Docker Containers. The “-e” option in a docker command is used to set environment variables. I will use Environment Variables to configure a number of things, which are:
The certificate will remain outside the container and will be mapped to the container using Docker Volume.
Suppose we want to access a file which contains some important password. The password is needed for the app which is running in a Docker Container. We want this file to remain accessible and not never get deleted even if the container is destroyed. How to do it?
The answer is through Docker Volume. The Docker Volume lives outside of the container in the file system of the hosting server. So, if you are running Docker Container in Azure then you can store this file in azure directory. The container can access this file from there. See the below image which explains this concept of Docker Volume.
We can simply use the Docker Volume concept to store a SSL certificate in a volume, and then let our app, which is running in a docker container, to use it from there.
Use -v option in docker command to work with volumes.
The dotnet dev-certs tool is used to create self-signed development certificates.
First clean any previous SSL development certificate from your machine. So, run the following command in your Command Prompt.
dotnet dev-certs https --clean
Accept any prompt which you get. Then you will see a message – HTTPS development certificates successfully removed from the machine..
Next, run the following given command to generate a new SSL Development Certificate.
dotnet dev-certs https -ep %USERPROFILE%\.aspnet\https\aspnetapp.pfx -p mypass123
You will receive a message – The HTTPS developer certificate was generated successfully.
The SSL by the name of aspnetapp.pfx will be created with a password mypass123.
The path of the SSL certificate will be inside user profile folder, since I have referred it from %USERPROFILE%\. The full path of the SSL in my case is:
C:\Users\Avita\.aspnet\https
Here Avita is my windows login name, change it to your login name, and find it in your pc. In the below image I have shown the SSL certificate file which is generated on my pc.
The final thing to do is to trust the ASP.NET Core HTTPS development certificate. This command which does this is given below.
dotnet dev-certs https --trust
If you get a prompt after running the above command then make sure you accept it.
First, we need to build the Docker Image so that it contains our ASP.NET Core app. In your command prompt, go to the directory containing the Dockerfile and then run the following docker build command:
docker build -t dhttps:v1 .
Docker image with the name of dhttps and tag v1 will be created for our ASP.NET Core app.
Next command is to run a docker container with the image we just built. This command is given below:
docker run -p 7000:80 -p 7001:443 -e ASPNETCORE_URLS="https://+;http://+" -e ASPNETCORE_HTTPS_PORT=7001 -e ASPNETCORE_Kestrel__Certificates__Default__Password="mypass123" -e ASPNETCORE_Kestrel__Certificates__Default__Path=/https/aspnetapp.pfx -v %USERPROFILE%\.aspnet\https:/https/ dhttps:v1
See the below image which shows I am running this command.
Let us understand the above command:
=> With the “-p” option -p 7000:80 -p 7001:443 the ports 80 and 443 of the container are exposed to the ports 7000 and 7001 of the host.
=> I defined 3 environment variables to pass values to the app which is running inside the container. The environment variables are used to pass app’s url, https certificate location and ssl certificate path. These are:
ASPNETCORE_URLS="https://+;http://+"
. This means that the APP will be opened in both http and https.ASPNETCORE_Kestrel__Certificates__Default__Password="mypass123"
. Recall it is mypass123.Next, with the volume “-v”, I have specified where Docker should look for the SSL certificate on the drive. My certificate is outside of the container and is mapped to the container using a volume instead of bundling it together with the app in the image.
I used the below code for doing this work:
-v %USERPROFILE%\.aspnet\https:/https/
Finally, at the last of the docker run command, I specified the docker image to run inside this container – dhttps:v1.
Now you can open the URL of the app in our browser, url is https://localhost:7001/. The app will open from the docker container with HTTP certificate fully working. I have shown this in the below video.
You can download the source code:
In this tutorial you learn how to use HTTP certificate for ASP.NET Core app running in a Docker Container. You also learned how to generate development https certificate for ASP.NET Core app and the way to tell docker container about it’s path by using volume mapping. Hope you liked reading and learning from it. Kindly share it on your facebook and twitter accounts so that other people can also learn this.
Hi YoGi.I’m trying to follow you but I’m not getting the same results as you.
Hello Cuong Nguyen,
I think your -v parameter value is not correct. Kindly use
-v %USERPROFILE%\.aspnet\https:/https/ dhttps:v1
.