Skip to content

Commit 69498e0

Browse files
authored
Merge pull request #57339 from dlepow/acr
ACR portal qs: PR 18113 from public repo
2 parents c77fbcd + 4fc49b3 commit 69498e0

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

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

Lines changed: 14 additions & 14 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. 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.
3030

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

@@ -66,29 +66,29 @@ 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.
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
72-
docker tag microsoft/aci-helloworld <login server>/aci-helloworld:v1
72+
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
78-
docker push <login server>/aci-helloworld:v1
78+
docker push <login server>/<repository name>/aci-helloworld:v1
7979
```
8080

8181
Output from a successful `docker push` command is similar to:
8282

8383
```
84-
The push refers to a repository [uniqueregistryname.azurecr.io/aci-helloworld]
85-
7c701b1aeecd: Pushed
86-
c4332f071aa2: Pushed
87-
0607e25cc175: Pushed
84+
The push refers to repository [specificregistryname.azurecr.io/myrepo/aci-helloworld]
85+
31ba1ebd9cf5: Pushed
86+
cd07853fe8be: Pushed
87+
73f25249687f: Pushed
8888
d8fbd47558a8: Pushed
8989
44ab46125c35: Pushed
9090
5bef08742407: Pushed
91-
v1: digest: sha256:f2867748615cc327d31c68b1172cc03c0544432717c4d2ba2c1c2d34b18c62ba size: 1577
91+
v1: digest: sha256:565dba8ce20ca1a311c2d9485089d7ddc935dd50140510050345a1b0ea4ffa6e size: 1576
9292
```
9393

9494
## List container images
@@ -109,7 +109,7 @@ A context menu will appear, select **Run instance**:
109109

110110
![Launch ACI context menu][qs-portal-11]
111111

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

114114
![Launch ACI deployment options][qs-portal-12]
115115

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

132132
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.
133133

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

136136
## Next steps
137137

36.5 KB
Loading
-3.62 KB
Loading
-1.81 KB
Loading
-36.7 KB
Loading
11.6 KB
Loading
15.9 KB
Loading
22.1 KB
Loading
133 Bytes
Loading
-1.42 KB
Loading

0 commit comments

Comments
 (0)