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
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,21 +19,21 @@ 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 *myResourceGroup* in the *eastus* location.
22
+
The following example creates a resource group named *my-resource-group* in the *eastus* location.
23
23
24
24
```azurecli
25
-
az group create --name myResourceGroup --location eastus
25
+
az group create --name my-resource-group --location eastus
26
26
```
27
27
28
28
## Create a container registry
29
29
30
30
In this quickstart you create a *Basic* registry, which is 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].
31
31
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 alphanumeric characters. In the following example, *myContainerRegistry007* is used. Update this to a unique value.
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 myResourceGroup \
36
-
--name myContainerRegistry007 --sku Basic
35
+
az acr create --resource-group my-resource-group \
36
+
--name mycontainerregistry --sku Basic
37
37
```
38
38
39
39
When the registry is created, the output is similar to the following:
@@ -42,12 +42,12 @@ When the registry is created, the output is similar to the following:
Next, create a container registry in your new resource group with the [New-AzContainerRegistry][New-AzContainerRegistry] command.
42
42
43
-
The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. The following example creates a registry named "myContainerRegistry007." Replace *myContainerRegistry007* in the following command, then run it to create the registry:
43
+
The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. The following example creates a registry named "mycontainerregistry." Replace *mycontainerregistry* in the following command, then run it to create the registry:
0 commit comments