The answer given by Robert Bailey is good for certain tasks, but what you specifically want to do may be missing. However, your comments in response to his answer are not so much the flaws of his answer as your understanding of what teams that βfailβ really mean.
Regarding your second comment,
Using docker, I get the following error (for the reasons indicated above; I also edited the question): Cannot connect to the Docker daemon. Is the docker daemon running on this host? Cannot connect to the Docker daemon. Is the docker daemon running on this host?
This is the result of a docker demo. Check if it works through ps aux | grep docker ps aux | grep docker . You can refer to the Docker documentation to determine how to properly install and run it.
Regarding your first comment,
Using curl, I get: {"errors":[{"code":"DENIED","message":"Failed to read tags for repository '<my_project>/<my_image>'"}]} . I must authenticate in some way access to images in a private registry. I do not want to use docker, because this means that I must have a docker daemon available. I just want to see if the image of the container with the specific version is in the Container Registry. So I need the API in the Container Registry in the Google Developer Console.
You would not be able to curl image if it was not publicly available, as mentioned in Robert's last comment, or if you somehow did not provide some large oauth headers during the curl call.
You should use gcloud docker to try to list images in the registry, as for other docker registries. The gcloud container team group is incorrect for your desired task. You can see below the output of gcloud version 96.0.0 (the last of this comment) for the docker command group:
$ gcloud docker Usage: docker [OPTIONS] COMMAND [arg...] docker daemon [
You should use gcloud docker search gcr.io/project-id to check which images are in the repository. gcloud has your credentials, so it can talk to the private registry if you are authenticated as the appropriate user in the project.
Finally, as an additional resource: Cloud Platform Docs contains an entire article on working with the Google Container Registry .