diff --git a/Instructions/Labs/AZ-204_lab_05.md b/Instructions/Labs/AZ-204_lab_05.md index 8dfed612..4a302746 100644 --- a/Instructions/Labs/AZ-204_lab_05.md +++ b/Instructions/Labs/AZ-204_lab_05.md @@ -250,19 +250,19 @@ In this lab, you will explore how to create and deploy containers to the Azure C 1. At the **Cloud Shell** command prompt in the portal, run the following command to get a list of all container registries in your subscription: ``` - az acr list + az acr list --resource-group ContainerCompute ``` 1. Run the following command, ensuring you see the name of your registry as output. If you see no output other than '[]', wait a minute and try running the command again. ``` - az acr list --query "max_by([], &creationDate).name" --output tsv + az acr list --resource-group ContainerCompute --query "max_by([], &creationDate).name" --output tsv ``` 1. Run the following command: ``` - acrName=$(az acr list --query "max_by([], &creationDate).name" --output tsv) + acrName=$(az acr list --resource-group ContainerCompute --query "max_by([], &creationDate).name" --output tsv) ``` 1. Run the following command: