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: docs/architecture/containerized-lifecycle/design-develop-containerized-apps/build-aspnet-core-applications-linux-containers-aks-kubernetes.md
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ services:
143
143
#...
144
144
```
145
145
146
-
Now you can run your application with **F5** key, or by using the **Play** button, or the **Ctrl+F5** key, selecting the docker-compose project, as shown in image 4-42.
146
+
Now you can run your application with the **F5** key, or by using the **Play** button, or the **Ctrl+F5** key, selecting the docker-compose project, as shown in image 4-42.
147
147
148
148

149
149
@@ -194,6 +194,9 @@ Run the following command from the **az cli**:
194
194
az acr create --name exploredocker --resource-group explore-docker-aks-rg --sku basic --admin-enabled
195
195
```
196
196
197
+
> [!NOTE]
198
+
> The container registry name (e.g `exploredocker`) must be unique within Azure, and contain 5-50 alphanumeric characters. For more details, refer [Create a container registry](https://docs.microsoft.com/azure/container-registry/container-registry-get-started-azure-cli#create-a-container-registry)
199
+
197
200
### Create the image in Release mode
198
201
199
202
You'll now create the image in **Release** mode (ready for production) by changing to **Release**, as shown in Figure 4-46, and running the application as you did before.
@@ -252,7 +255,7 @@ Push the image into the Azure ACR, using the following command:
252
255
docker push <login-server-name>/<image-name>:v1
253
256
```
254
257
255
-
This command takes a while uploading the images but gives you feedback in the process. In the following image you can see the output from one image completed and another in progress.
258
+
This command takes a while uploading the images but gives you feedback in the process. In the following image, you can see the output from one image completed and another in progress.
256
259
257
260

0 commit comments