Skip to content

Commit b13a52c

Browse files
committed
Polish PR 18113 from public repo
1 parent fda2165 commit b13a52c

File tree

11 files changed

+6
-7
lines changed

11 files changed

+6
-7
lines changed

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

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: dlepow
66

77
ms.service: container-registry
88
ms.topic: quickstart
9-
ms.date: 03/03/2018
9+
ms.date: 11/06/2018
1010
ms.author: danlep
1111
ms.custom: mvc
1212
---
@@ -22,11 +22,11 @@ Sign in to the Azure portal at https://portal.azure.com.
2222

2323
## Create a container registry
2424

25-
Select **Create a resource** > **Containers** > **Azure Container Registry**.
25+
Select **Create a resource** > **Containers** > **Container Registry**.
2626

2727
![Creating a container registry in the Azure portal][qs-portal-01]
2828

29-
Enter values for **Registry name** and **Resource group**. The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. Create a new resource group named `myResourceGroup`, and for **SKU**, select 'Basic'. Select **Create** to deploy the ACR instance.
29+
Enter values for **Registry name** and **Resource group**. The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. Create a new resource group in the `East US` location named `myResourceGroup`, and for **SKU**, select 'Basic'. Select **Create** to deploy the ACR instance.
3030

3131
![Creating a container registry in the Azure portal][qs-portal-03]
3232

@@ -66,18 +66,17 @@ To push an image to your Azure Container Registry, you must first have an image.
6666
docker pull microsoft/aci-helloworld
6767
```
6868

69-
Before you push the image to your registry, you must tag the image with the ACR login server name. Tag the image using the [docker tag][docker-tag] command. Replace *login server* with the login server name you recorded earlier. Add a *repository name* to place your image in a repository.
69+
Before you push the image to your registry, you must tag the image with the ACR login server name. Tag the image using the [docker tag][docker-tag] command. Replace *login server* with the login server name you recorded earlier. Add a *repository name* such as **`myrepo`** to place your image in a repository.
7070

7171
```bash
7272
docker tag microsoft/aci-helloworld <login server>/<repository name>/aci-helloworld:v1
7373
```
7474

75-
Finally, use [docker push][docker-push] to push the image to the ACR instance. Replace *login server* with the login server name of your ACR instance.
75+
Finally, use [docker push][docker-push] to push the image to the ACR instance. Replace *login server* with the login server name of your ACR instance, and replace the *repository name* with the name of the repository you used in the previous command.
7676

7777
```bash
7878
docker push <login server>/<repository name>/aci-helloworld:v1
7979
```
80-
In this example, let's use **`myrepo`** as the *<repository name>* for aci-helloworld image.
8180

8281
Output from a successful `docker push` command is similar to:
8382

@@ -132,7 +131,7 @@ Once the container is in the **Running** state, use your favorite browser to nav
132131

133132
To clean up your resources navigate to the **myResourceGroup** resource group in the portal. Once the resource group is loaded click on **Delete resource group** to remove the resource group, the Azure Container Registry, and all Azure Container Instances.
134133

135-
![Creating a container registry in the Azure portal][qs-portal-08]
134+
![Delete resource group in the Azure portal][qs-portal-08]
136135

137136
## Next steps
138137

24.4 KB
Loading
7.84 KB
Loading
13 KB
Loading
9.12 KB
Loading
9.92 KB
Loading
10.2 KB
Loading
1.35 KB
Loading
2.49 KB
Loading
2.63 KB
Loading

0 commit comments

Comments
 (0)