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
+14-14Lines changed: 14 additions & 14 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. For this quickstart create a new resource group in the `West 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,29 +66,29 @@ 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.
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
-
docker tag microsoft/aci-helloworld <login server>/aci-helloworld:v1
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.
@@ -109,7 +109,7 @@ A context menu will appear, select **Run instance**:
109
109
110
110
![Launch ACI context menu][qs-portal-11]
111
111
112
-
Fill in **Container name**, ensure the correct subscription is selected, select the existing **Resource group**: "myResourceGroup" and then click **OK** to launch the Azure Container Instance.
112
+
Fill in **Container name**, ensure the correct subscription is selected, select the existing **Resource group**: "myResourceGroup". Ensure that the "Public IP address" options is enabled by setting to **Yes** and then click **OK** to launch the Azure Container Instance.
113
113
114
114
![Launch ACI deployment options][qs-portal-12]
115
115
@@ -131,7 +131,7 @@ Once the container is in the **Running** state, use your favorite browser to nav
131
131
132
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.
133
133
134
-
![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