Complete the command to push a Docker image to Google Container Registry.
docker [1] gcr.io/my-project/my-image:latestThe docker push command uploads your image to the registry.
Complete the command to pull a Docker image from Google Container Registry.
docker [1] gcr.io/my-project/my-image:latestThe docker pull command downloads the image from the registry to your local machine.
Fix the error in the command to tag a local image for pushing to Google Container Registry.
docker tag my-image:latest [1]/my-project/my-image:latestImages must be tagged with the Google Container Registry hostname gcr.io before pushing.
Fill both blanks to complete the command that authenticates Docker to Google Container Registry.
gcloud auth [1]-docker [2]
The command gcloud auth configure-docker --quiet sets up Docker authentication silently.
Fill both blanks to complete the command that lists tags for an image in a Google Container Registry repository.
gcloud container images list-[1] gcr.io/my-project/[2]
The command gcloud container images list-tags gcr.io/my-project/my-image lists tags for the specified image.