You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Azure Container Apps enables you to run microservices and containerized applications on a serverless platform. With Container Apps, you enjoy the benefits of running containers while leaving behind the concerns of manually configuring cloud infrastructure and complex container orchestrators.
16
16
17
-
In this tutorial, you deploy a containerized ASP.NET Core 6.0 (or higher as lates ASP.NET Core 8.0 is available) application to Azure Container Apps using Visual Studio. The steps below also apply to earlier versions of ASP.NET Core.
17
+
In this tutorial, you deploy a containerized ASP.NET Core 8.0 application to Azure Container Apps using Visual Studio. The steps below also apply to earlier versions of ASP.NET Core.
18
18
19
19
## Prerequisites
20
20
@@ -23,7 +23,7 @@ In this tutorial, you deploy a containerized ASP.NET Core 6.0 (or higher as late
23
23
24
24
## Create the project
25
25
26
-
For deployment to Azure, begin by creating the containerized ASP.NET Core application
26
+
Begin by creating the containerized ASP.NET Core application.
27
27
28
28
1) In Visual Studio, select **File** and then choose **New => Project**.
29
29
@@ -39,15 +39,15 @@ For deployment to Azure, begin by creating the containerized ASP.NET Core applic
39
39
40
40
## Deploy to Azure Container Apps
41
41
42
-
The application includes a Dockerfile because the Enable Docker setting was selected in the project template. Visual Studio uses the Dockerfile to build the container image that the Azure Container Apps run.
42
+
The application includes a Dockerfile because the project template had the *Enable Docker* setting selected. Visual Studio uses the Dockerfile to build the container image that the Azure Container Apps run.
43
43
44
44
Refer to [How Visual Studio builds containerized apps](/visualstudio/containers/container-build) if you'd like to learn more about the specifics of this process.
45
45
46
46
You're now ready to deploy to the application to Azure Containers Apps.
47
47
48
48
### Create the resources
49
49
50
-
The Visual Studio publish dialogs help you choose existing Azure resources, or create new ones to be used to deploy your applications to. It also builds the container image using the Dockerfile in the project, push this image to Azure Container Registry (ACR), and finally deploy the new image to the container app selected.
50
+
The publish dialog windows in Visual Studio help you choose existing Azure resources, or allow you to create new ones for deployment. This process also builds the container image, pushes the image to Azure Container Registry (ACR), and deploys the new container app image.
51
51
52
52
1) Right-click the **MyContainerApp** project node and select **Publish**.
53
53
@@ -75,7 +75,7 @@ The Visual Studio publish dialogs help you choose existing Azure resources, or c
75
75
76
76
:::image type="content" source="media/visual-studio/container-apps-select-resource.png" alt-text="A screenshot showing how to select the created resource.":::
77
77
78
-
8) On the **Registry** screen, you can either select an existing Registry if you have one, or create a new one. To create a new one, click the green **+** icon on the right. On the **Create new** registry screen, fill in the following values:
78
+
8) On the **Registry** screen, you can either select an existing Registry if you have one, or create a new one. To create a new one, click the green **+** icon on the right. On the *Create new* registry screen, fill in the following values:
79
79
80
80
-**DNS prefix**: Enter a value of `msdocscontainerregistry` or a name of your choosing.
81
81
-**Subscription Name**: Select the subscription you want to use - you might only have one to choose from.
0 commit comments