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-portal.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ author: dlepow
6
6
7
7
ms.service: container-registry
8
8
ms.topic: quickstart
9
-
ms.date: 03/03/2018
9
+
ms.date: 11/06/2018
10
10
ms.author: danlep
11
11
ms.custom: mvc
12
12
---
@@ -22,11 +22,11 @@ Sign in to the Azure portal at https://portal.azure.com.
22
22
23
23
## Create a container registry
24
24
25
-
Select **Create a resource** > **Containers** > **Azure Container Registry**.
25
+
Select **Create a resource** > **Containers** > **Container Registry**.
26
26
27
27
![Creating a container registry in the Azure portal][qs-portal-01]
28
28
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.
30
30
31
31
![Creating a container registry in the Azure portal][qs-portal-03]
32
32
@@ -66,18 +66,17 @@ To push an image to your Azure Container Registry, you must first have an image.
66
66
docker pull microsoft/aci-helloworld
67
67
```
68
68
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.
70
70
71
71
```bash
72
72
docker tag microsoft/aci-helloworld <login server>/<repository name>/aci-helloworld:v1
73
73
```
74
74
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.
In this example, let's use **`myrepo`** as the *<repositoryname>* for aci-helloworld image.
81
80
82
81
Output from a successful `docker push` command is similar to:
83
82
@@ -132,7 +131,7 @@ Once the container is in the **Running** state, use your favorite browser to nav
132
131
133
132
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.
134
133
135
-
![Creating a container registry in the Azure portal][qs-portal-08]
134
+
![Delete resource group in the Azure portal][qs-portal-08]
0 commit comments