Create application
Last updated
Last updated
For our sample application, let’s create a simple application from a template using .NET. Create a directory in your local machine named dotnet-docker
. Open a terminal and change to that directory. Run the following dotnet new
command to create a C# app using the ASP.NET Core Web App template.
Let’s start our application and make sure it’s running properly. Open your terminal and navigate to the src
directory and use the dotnet run
command.
Press Ctrl+C in the terminal window to stop the application.