Skip to content

Commit c0659db

Browse files
committed
Casing
1 parent 783e2e7 commit c0659db

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

articles/container-registry/container-registry-get-started-azure-cli.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ Because the Azure Cloud Shell doesn't include all required Docker components (th
1919

2020
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.
2121

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.
2323

2424
```azurecli
25-
az group create --name myResourceGroup --location eastus
25+
az group create --name my-resource-group --location eastus
2626
```
2727

2828
## Create a container registry
2929

3030
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].
3131

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.
3333

3434
```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
3737
```
3838

3939
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:
4242
{
4343
"adminUserEnabled": false,
4444
"creationDate": "2019-01-08T22:32:13.175925+00:00",
45-
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/myContainerRegistry007",
45+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-resource-group/providers/Microsoft.ContainerRegistry/registries/mycontainerregistry",
4646
"location": "eastus",
47-
"loginServer": "mycontainerregistry007.azurecr.io",
48-
"name": "myContainerRegistry007",
47+
"loginServer": "mycontainerregistry.azurecr.io",
48+
"name": "mycontainerregistry",
4949
"provisioningState": "Succeeded",
50-
"resourceGroup": "myResourceGroup",
50+
"resourceGroup": "my-resource-group",
5151
"sku": {
5252
"name": "Basic",
5353
"tier": "Basic"

articles/container-registry/container-registry-get-started-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ New-AzResourceGroup -Name myResourceGroup -Location EastUS
4040

4141
Next, create a container registry in your new resource group with the [New-AzContainerRegistry][New-AzContainerRegistry] command.
4242

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:
4444

4545
```powershell
46-
$registry = New-AzContainerRegistry -ResourceGroupName "myResourceGroup" -Name "myContainerRegistry007" -EnableAdminUser -Sku Basic
46+
$registry = New-AzContainerRegistry -ResourceGroupName "myResourceGroup" -Name "mycontainerregistry" -EnableAdminUser -Sku Basic
4747
```
4848

4949
[!INCLUDE [container-registry-quickstart-sku](../../includes/container-registry-quickstart-sku.md)]

0 commit comments

Comments
 (0)