Complete the code to create an Artifact Registry repository with the correct location.
gcloud artifacts repositories create my-repo --repository-format=docker --location=[1]The location europe-west1 is a valid regional location for Artifact Registry repositories.
Complete the code to specify the repository format as Docker.
gcloud artifacts repositories create my-repo --repository-format=[1] --location=europe-west1The repository format docker is used to store Docker container images.
Fix the error in the command to create a Docker repository named 'my-repo'.
gcloud artifacts repositories create [1] --repository-format=docker --location=europe-west1The repository name my-repo uses a valid format with hyphens allowed. Spaces are not allowed.
Fill both blanks to create a Docker repository with description and location.
gcloud artifacts repositories create my-repo --repository-format=[1] --location=[2] --description="Docker images repository"
The repository format should be docker and the location europe-west1 is a valid region.
Fill all three blanks to create a Docker repository with location, description, and format.
gcloud artifacts repositories create [1] --repository-format=[2] --location=[3] --description="Repository for container images"
The repository name is my-repo, format is docker, and location is us-central1.