Skip to content

Commit c37948a

Browse files
Merge pull request #263367 from AjayBathini-MSFT/patch-137
(AzureCXP) fixes MicrosoftDocs/azure-docs#118892
2 parents e177661 + 519b7f8 commit c37948a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-registry/container-registry-quickstart-task-cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ az group create --name myResourceGroup --location eastus
3333

3434
## Create a container registry
3535

36-
Create a container registry using the [az acr create][az-acr-create] command. The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. In the following example, *myContainerRegistry008* is used. Update this to a unique value.
36+
Create a container registry using the [az acr create][az-acr-create] command. The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. In the following example, *mycontainerregistry008* is used. Update this to a unique value.
3737

3838
```azurecli-interactive
3939
az acr create --resource-group myResourceGroup \
40-
--name myContainerRegistry008 --sku Basic
40+
--name mycontainerregistry008 --sku Basic
4141
```
4242

4343
This example creates a *Basic* registry, a cost-optimized option for developers learning about Azure Container Registry. For details on available service tiers, see [Container registry service tiers][container-registry-skus].
@@ -54,7 +54,7 @@ Run the [az acr build][az-acr-build] command, which builds the image and, after
5454

5555
```azurecli-interactive
5656
az acr build --image sample/hello-world:v1 \
57-
--registry myContainerRegistry008 \
57+
--registry mycontainerregistry008 \
5858
--file Dockerfile .
5959
```
6060

@@ -117,7 +117,7 @@ Now quickly run the image you built and pushed to your registry. Here you use [a
117117
The following example uses $Registry to specify the endpoint of the registry where you run the command:
118118

119119
```azurecli-interactive
120-
az acr run --registry myContainerRegistry008 \
120+
az acr run --registry mycontainerregistry008 \
121121
--cmd '$Registry/sample/hello-world:v1' /dev/null
122122
```
123123

0 commit comments

Comments
 (0)