Skip to content

Commit 33e72e9

Browse files
committed
Refresh article
1 parent 746e000 commit 33e72e9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

articles/app-service/configure-custom-container.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ It takes some time to download a parent image during app startup. You can reduce
6464
Use the following command to change the current Docker image to a new image in an existing custom container:
6565

6666
```azurecli-interactive
67-
az webapp config container set --name <app-name> --resource-group <group-name> --docker-custom-image-name <docker-hub-repo>/<image>
67+
az webapp config container set --name <app-name> --resource-group <group-name> --container-image-name <docker-hub-repo>/<image>
6868
```
6969

7070
Replace the *\<placeholders>* with your own values.
@@ -74,7 +74,7 @@ Replace the *\<placeholders>* with your own values.
7474
To use an image from a private registry, such as Azure Container Registry, run the following command:
7575

7676
```azurecli-interactive
77-
az webapp config container set --name <app-name> --resource-group <group-name> --docker-custom-image-name <image-name> --docker-registry-server-url <private-repo-url> --docker-registry-server-user <username> --docker-registry-server-password <password>
77+
az webapp config container set --name <app-name> --resource-group <group-name> --container-image-name <image-name> --docker-registry-server-url <private-repo-url> --docker-registry-server-user <username> --docker-registry-server-password <password>
7878
```
7979

8080
Supply the sign-in credentials for your private registry account in the *\<username>* and *\<password>* fields.
@@ -83,13 +83,13 @@ Supply the sign-in credentials for your private registry account in the *\<usern
8383

8484
Use the following steps to configure your web app to pull from Azure Container Registry by using managed identity. The steps use system-assigned managed identity, but you can also use user-assigned managed identity.
8585

86-
1. Enable [the system-assigned managed identity](./overview-managed-identity.md) for the web app by using the [`az webapp identity assign`](/cli/azure/webapp/identity#az-webapp-identity-assign) command:
86+
1. Enable the [system-assigned managed identity](./overview-managed-identity.md) for the web app by using the [`az webapp identity assign`](/cli/azure/webapp/identity#az-webapp-identity-assign) command:
8787

8888
```azurecli-interactive
8989
az webapp identity assign --resource-group <group-name> --name <app-name> --query principalId --output tsv
9090
```
9191

92-
Replace *\<app-name>* with the name you used in the previous step. The output of the command, filtered by the `--query` and `--output` arguments, is the service principal ID of the assigned identity.
92+
Replace *\<app-name>* with the name of your app. The output of the command, filtered by the `--query` and `--output` arguments, is the service principal ID of the assigned identity.
9393

9494
1. Get the resource ID of your container registry:
9595

0 commit comments

Comments
 (0)