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
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,29 +66,30 @@ 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* 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
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.
@@ -109,7 +110,7 @@ A context menu will appear, select **Run instance**:
109
110
110
111
![Launch ACI context menu][qs-portal-11]
111
112
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.
0 commit comments