We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37bc27d commit 6d100acCopy full SHA for 6d100ac
learn-pr/azure/build-and-store-container-images/includes/4-deploy-image.md
@@ -32,6 +32,9 @@ Azure Container Registry doesn't support unauthenticated access and requires aut
32
33
```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>
35
+ --os-type Linux
36
+ --cpu 1
37
+ --memory 1
38
```
39
40
2. Get the IP address of the Azure container instance using the `az container show` command.
0 commit comments