Question:
What command should you execute to verify if your image has been successfully pushed to Azure Container Registry?
Answer:
az acr repository list lists the repositories in the specified Azure Container Registry, allowing you to verify if your image is present.
docker images lists the images available on your local machine, not in the Azure Container Registry.
az acr show retrieves detailed information about the specified container registry, but does not list the images or repositories.
az acr task list lists all the tasks for a specified container registry, which are used for automated container image building.