Steps to run ASP.NET Core in Docker container

Steps to run ASP.NET Core in Docker container

There are too much knowledge to learn recently, and I don’t know which one to learn first. I originally planned to write this blog about the usage of listview in xamarin.forms. There is an article on Jianshu that introduces the usage of listview in detail, so I will put it on hold for the time being. It is a secondary task and I will write it later. This week, I found a tutorial about blockchain on the omnipotent Taobao, and learned about .net core. In the past one or two years, I haven't followed C# technology much, and my focus has been on Java. When .net core 1.0 was released, I felt that .net core was not perfect yet, so I didn't learn it. I didn't expect that .net core would reach 3.0 so soon. After all, I come from C#, and I can't forget my roots, so I plan to learn about .net core in the future. After a rough look, I found that there are many intersections with .net. Perhaps the biggest feature is the cross-platform part. This article first introduces how to use docker to run asp.net core applications.

1. Create a new asp.net core application

A new asp.net core application called myWebApp is created here.

2. Add Docker support

There are two ways to add docker support. One is to enable docker support when creating a new project, and the other is to right-click on the created project -> Add -> docker support.

You also need to choose whether it is a window platform or a Linux platform. If it is a window system, you need to set the window platform, and Docker also needs to be set to window containers. As shown in the following figure, the error "image operating system "windows" cannot be used on this platform" is reported because the wrong platform is selected.

3. Create a Docker image

After adding docker support, the dockerfile file will be automatically generated. There is a pitfall here. In the COPY ["myWebApp/myWebApp.csproj", "myWebApp/"] line, you need to pay attention to myWebApp/myWebApp.csproj, which is the myWebApp.csproj project file in the myWebApp directory, so you need to copy the created dockerfile to the project file directory.

#Depending on the operating system of the host machines(s) that will build or run the containers, the image specified in the FROM statement may need to be changed.
#For more information, please see https://aka.ms/containercompat

FROM microsoft/dotnet:2.2-aspnetcore-runtime-nanoserver-sac2016 AS base
WORKDIR /app
EXPOSE 80

FROM microsoft/dotnet:2.2-sdk-nanoserver-sac2016 AS build
WORKDIR /src
COPY ["myWebApp/myWebApp.csproj", "myWebApp/"]
RUN dotnet restore "myWebApp/myWebApp.csproj"
COPY . .
WORKDIR "/src/myWebApp"
RUN dotnet build "myWebApp.csproj" -c Release -o /app

FROM build AS publish
RUN dotnet publish "myWebApp.csproj" -c Release -o /app

FROM base AS final
WORKDIR /app
COPY --from=publish /app .
ENTRYPOINT ["dotnet", "myWebApp.dll"] 

In the project directory, use the docker command build to generate a docker image, docker build -t aspnetdemo . (There is a . after aspnetdemo, indicating the dockerfile path). An aspnetdemo image is built here. Since it is the first time to run Dockerfile, some .net core basic images need to be downloaded, and the Internet speed at home is relatively slow, so the download process took a long time.

4. Start the container

In the third step, the image has been created. You can use docker images to see the created image, and then use docker run to start the container to run the .net core application.

Enter http://localhost:8080/ in your browser and you will see the following page.

Microsoft's official documentation states that when using Windows containers, you must go directly to the container IP address in the browser. Here, -p is used to map the port, so you can access it by directly entering http://localhost:8080/.

Next, use ipconfig to find the docker ip mapped to the container, and then enter the docker ip in the browser to access it.

V. Summary

This article only briefly introduces the deployment of ASP.NET Core applications with Docker. In the future, NET Core may connect to containers such as databases and Redis, which involves container interconnection, container orchestration technology, and DevOps continuous integration. It can be expanded a lot in the future, and you can learn about these later.

You may also be interested in:
  • .Net Core deploys Docker container
  • ASP.NET Core Development Docker Deployment
  • Docker deploys Mysql, .Net6, Sqlserver and other containers
  • Deploy .Net6 project to docker
  • How to deploy .NET 5 on Docker
  • A preliminary tutorial on using Docker with .Net Core
  • .NETCore Docker implements containerization and private image repository management
  • Complete steps for deploying Asp.net core applications with docker
  • .Net development and deployment using Docker

<<:  MySQL 5.6 installation steps with pictures and text

>>:  Detailed analysis of replication in Mysql

Recommend

Specific method to add foreign key constraints in mysql

The operating environment of this tutorial: Windo...

Vue echarts realizes horizontal bar chart

This article shares the specific code of vue echa...

MySQL performance optimization: how to use indexes efficiently and correctly

Practice is the only way to test the truth. This ...

How to use history redirection in React Router

In react-router, the jump in the component can be...

10 content-related principles to improve website performance

<br />English address: http://developer.yaho...

Code comment writing standards during web page production

<br />I have summarized the annotation writi...

How to set static IP in CentOS7 on VirtualBox6 and what to note

Install CentOS 7 after installing VirtualBox. I w...

Example code of the spread operator and its application in JavaScript

The spread operator allows an expression to be ex...

Detailed explanation of webpage screenshot function in Vue

Recently, there is a requirement for uploading pi...

Detailed explanation of VUE responsiveness principle

Table of contents 1. Responsive principle foundat...

Detailed explanation of the usage of scoped slots in Vue.js slots

Table of contents No slots Vue2.x Slots With slot...

Mac installation mysqlclient process analysis

Try installing via pip in a virtual environment: ...

Web page layout should consider IE6 compatibility issues

The figure below shows the browser viewing rate i...

How to use nginx to intercept specified URL requests through regular expressions

nginx server nginx is an excellent web server tha...

Detailed explanation of how to install MySQL on Alibaba Cloud

As a lightweight open source database, MySQL is w...