Complete the command to log in to Azure Container Registry (ACR).
az acr [1] --name myRegistryThe az acr login command logs you into your Azure Container Registry so you can push or pull images.
Complete the command to build a Docker image and push it to ACR in one step.
az acr [1] --registry myRegistry --image myapp:v1 .The az acr build command builds a Docker image from your source code and pushes it to your Azure Container Registry automatically.
Fix the error in the command to push a local Docker image to ACR.
docker [1] myRegistry.azurecr.io/myapp:v1The docker push command uploads your local image to the specified container registry.
Fill both blanks to tag a local Docker image before pushing it to ACR.
docker tag [1] [2]
You tag your local image (e.g., myapp:v1) with the full registry path (myRegistry.azurecr.io/myapp:v1) before pushing it.
Fill all three blanks to build, tag, and push a Docker image to ACR manually.
docker [1] -t [2] . && docker [3] [2]
First, you build the image with docker build and tag it with the registry path. Then, you push it with docker push.