Complete the code to specify the container image path in Google Container Registry.
image_path = "gcr.io/my-project/[1]"
The container image path must include the image name after the project ID in Google Container Registry.
Complete the command to push a Docker image to Google Container Registry.
docker push [1]To push an image to Google Container Registry, use the full path starting with gcr.io followed by your project and image name.
Fix the error in the command to authenticate Docker with Google Container Registry.
gcloud auth configure-[1]The correct command is 'gcloud auth configure-docker' to allow Docker to authenticate with Google Container Registry.
Fill both blanks to create a command that lists images in Google Container Registry.
gcloud container images [1] gcr.io/my-project/[2]
The command 'gcloud container images list' lists images, and you specify the image repository after the project path.
Fill all three blanks to tag a local Docker image before pushing it to Google Container Registry.
docker tag [1] gcr.io/[2]/[3]
You tag your local image with the full Google Container Registry path including project and image name before pushing.