Create your first Docker container with an ASP.NET web app
Prerequisites
To complete this tutorial, install Visual Studio 2017, including the ASP.NET and web development workload.
You will also need to install Docker for Windows.
Create
To create a new web application project, in Visual Studio, create a project by selecting File > New > Project.
In the New Project dialog, select Visual C# > Web > ASP.NET Core Web Application.
Hint: If you do not see the ASP.NET Core Web Application project type, learn how to modify your Visual Studio installation to include the Web Development workload.
Name the application myFirstContainerApp, and then select OK.
You can run any type of ASP.NET web app inside a container. For this quickstart, select the Web Application template, and make sure authentication is set to No Authentication.
Select OK.
From the menu, select Debug > Start without Debugging to run the web app locally.
I ran into an issue I have created my ASP.NET web app