Skip to content

Commit 6c2af8b

Browse files
Merge pull request #50426 from lootle1/UUF25
User Feedback 431570: UUF - learn-pr - Exercise - Deploy images from …
2 parents 37bc27d + 8cee90f commit 6c2af8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

learn-pr/azure/build-and-store-container-images/includes/4-deploy-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Azure Container Registry doesn't support unauthenticated access and requires aut
3131
1. Deploy a container instance using the `az container create` command. Make sure you replace `<admin-username>` and `<admin-password>` with your admin username and password from the previous command.
3232
3333
```azurecli-interactive
34-
az container create --resource-group learn-acr-rg --name acr-tasks --image $ACR_NAME.azurecr.io/helloacrtasks:v1 --registry-login-server $ACR_NAME.azurecr.io --ip-address Public --location eastus --registry-username <admin-username> --registry-password <admin-password>
34+
az container create --resource-group learn-acr-rg --name acr-tasks --image $ACR_NAME.azurecr.io/helloacrtasks:v1 --registry-login-server $ACR_NAME.azurecr.io --ip-address Public --location eastus --registry-username <admin-username> --registry-password <admin-password> --os-type Linux --cpu 1 --memory 1
3535
```
3636
3737
2. Get the IP address of the Azure container instance using the `az container show` command.

0 commit comments

Comments
 (0)