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
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/quickstart-container-apps.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ To create the container app and container apps environment using the Azure CLI,
41
41
42
42
## Connect Azure Container Apps to Azure App Configuration
43
43
44
-
In the next step, you will add the connection string of your App Configuration store to the secret of your Container App and add an environment variable to your container to reference the secret. You use the [Service Connector](../service-connector/overview.md) to do this in a few steps without managing the connection information yourself.
44
+
In the next step, you'll add the connection string of your App Configuration store to the secret of your Container App and add an environment variable to your container to reference the secret. You use the [Service Connector](../service-connector/overview.md) to do this in a few steps without managing the connection information yourself.
45
45
46
46
In the Azure portal, connect the container app to Azure App Configuration following the [Service Connector quickstart for Azure Container Apps](../service-connector/quickstart-portal-container-apps.md). While following the steps of the quickstart:
47
47
@@ -66,7 +66,7 @@ Once done, an environment variable named **ConnectionStrings__AppConfig** will b
66
66
dotnet publish -c Release -o published
67
67
```
68
68
69
-
1. Create a file named *Dockerfile* in the directory containing your .csproj file, open it in a text editor, and enter the content below. A Dockerfile is a text file that doesn't have an extension and that is used to create a container image.
69
+
1. Create a file named *Dockerfile* in the directory containing your .csproj file, open it in a text editor, and enter the following content. A Dockerfile is a text file that doesn't have an extension and that is used to create a container image.
70
70
71
71
```docker
72
72
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS runtime
@@ -75,7 +75,7 @@ Once done, an environment variable named **ConnectionStrings__AppConfig** will b
75
75
ENTRYPOINT ["dotnet", "TestAppConfig.dll"]
76
76
```
77
77
78
-
1. Build the container by running the command below
78
+
1. Build the container by running the following command.
0 commit comments