Skip to content

Commit 46ce829

Browse files
committed
Update screenshots to match current Azure Container Registry (ACR) and also add minor edit on repository/image name format and more clarification.
1 parent b94e7b7 commit 46ce829

File tree

13 files changed

+10
-9
lines changed

13 files changed

+10
-9
lines changed

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

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,29 +66,30 @@ 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* 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

7575
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.
7676

7777
```bash
78-
docker push <login server>/aci-helloworld:v1
78+
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.
8081

8182
Output from a successful `docker push` command is similar to:
8283

8384
```
84-
The push refers to a repository [uniqueregistryname.azurecr.io/aci-helloworld]
85-
7c701b1aeecd: Pushed
86-
c4332f071aa2: Pushed
87-
0607e25cc175: Pushed
85+
The push refers to repository [specificregistryname.azurecr.io/myrepo/aci-helloworld]
86+
31ba1ebd9cf5: Pushed
87+
cd07853fe8be: Pushed
88+
73f25249687f: Pushed
8889
d8fbd47558a8: Pushed
8990
44ab46125c35: Pushed
9091
5bef08742407: Pushed
91-
v1: digest: sha256:f2867748615cc327d31c68b1172cc03c0544432717c4d2ba2c1c2d34b18c62ba size: 1577
92+
v1: digest: sha256:565dba8ce20ca1a311c2d9485089d7ddc935dd50140510050345a1b0ea4ffa6e size: 1576
9293
```
9394

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

110111
![Launch ACI context menu][qs-portal-11]
111112

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.
113+
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.
113114

114115
![Launch ACI deployment options][qs-portal-12]
115116

12.1 KB
Loading
-7.84 KB
Loading
-14.8 KB
Loading
-36.7 KB
Loading
2.47 KB
Loading
5.99 KB
Loading
11.9 KB
Loading
-1.22 KB
Loading
-3.92 KB
Loading

0 commit comments

Comments
 (0)