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/container-registry/container-registry-get-started-azure-cli.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,10 +19,10 @@ Because the Azure Cloud Shell doesn't include all required Docker components (th
19
19
20
20
Create a resource group with the [az group create][az-group-create] command. An Azure resource group is a logical container into which Azure resources are deployed and managed.
21
21
22
-
The following example creates a resource group named *my-resource-group* in the *eastus* location.
22
+
The following example creates a resource group named *myResourceGroup* in the *eastus* location.
23
23
24
24
```azurecli
25
-
az group create --name my-resource-group --location eastus
25
+
az group create --name myResourceGroup --location eastus
26
26
```
27
27
28
28
## Create a container registry
@@ -32,7 +32,7 @@ In this quickstart you create a *Basic* registry, which is a cost-optimized opti
32
32
Create an ACR instance using the [az acr create][az-acr-create] command. The registry name must be unique within Azure, and contain 5-50 lowercase alphanumeric characters. In the following example, *mycontainerregistry* is used. Update this to a unique value.
33
33
34
34
```azurecli
35
-
az acr create --resource-group my-resource-group \
35
+
az acr create --resource-group myResourceGroup \
36
36
--name mycontainerregistry --sku Basic
37
37
```
38
38
@@ -42,12 +42,12 @@ When the registry is created, the output is similar to the following:
0 commit comments