diff --git a/articles/container-instances/container-instances-tutorial-prepare-acr.md b/articles/container-instances/container-instances-tutorial-prepare-acr.md index f963ba9301306..f30ed207454b0 100644 --- a/articles/container-instances/container-instances-tutorial-prepare-acr.md +++ b/articles/container-instances/container-instances-tutorial-prepare-acr.md @@ -56,7 +56,7 @@ Throughout the rest of this tutorial, we use `` as a placeholder for th ## Get Azure Container Registry information -Once the container registry is created, you can query its login server and password. The following code returns these values. Note each value down, they are referenced throughout this tutorial. +Once the container registry is created, you can query its login server and password. The following code returns these values. Note each value for login server and password, as they are referenced throughout this tutorial. Container registry login server (update with your registry name): @@ -69,14 +69,14 @@ Throughout the rest of this tutorial, we use `` as a placeholder Container registry password: ```azurecli -az acr credential show --name --query passwords[0].value +az acr credential show --name --query "passwords[0].value" ``` Throughout the rest of this tutorial, we use `` as a placeholder for the container registry password value. ## Login to the container registry -You must login to your container registry instance before pushing images to it. Use the [docker login](https://docs.docker.com/engine/reference/commandline/login/) command to complete the operation. When running docker login, you need to provide th registry login server name and credentials. +You must login to your container registry instance before pushing images to it. Use the [docker login](https://docs.docker.com/engine/reference/commandline/login/) command to complete the operation. When running docker login, you need to provide the registry login server name and credentials. ```bash docker login --username= --password= @@ -86,7 +86,7 @@ The command returns a 'Login Succeeded’ message once completed. ## Tag container image -In order to deploy a container image from a private registry, the image needs to be tagged with the `loginServer` name of the registry. +To deploy a container image from a private registry, the image needs to be tagged with the `loginServer` name of the registry. To see a list of current images, use the `docker images` command. @@ -173,4 +173,4 @@ In this tutorial, an Azure Container Registry was prepared for use with Azure Co Advance to the next tutorial to learn about deploying the container to Azure using Azure Container Instances. > [!div class="nextstepaction"] -> [Deploy containers to Azure Container Instances](./container-instances-tutorial-deploy-app.md) \ No newline at end of file +> [Deploy containers to Azure Container Instances](./container-instances-tutorial-deploy-app.md)