Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find the list of Google Container Registry public images

Where can I find the list of GCR public images? In case of docker images, we can list it in hub.docker.com. But I couldn't find anything like that for GCR.

like image 492
Sujai Sivasamy Avatar asked Feb 02 '16 12:02

Sujai Sivasamy


People also ask

How do I see photos in the container registry?

Sign in to the Azure portal. Select the Azure Container Registry to which you pushed the Nginx image. Select Repositories to see a list of the repositories that contain the images in the registry. Select a repository to see the image tags within that repository.

Where are Docker registry images stored?

The docker images, they are stored inside the docker directory: /var/lib/docker/ images are stored there.

Where can users find GCP preferred base container images?

Google maintains base images for building its own applications. These images are available to users at Google Cloud Marketplace.

Does Docker registry contain collection of images?

A registry is a storage and content delivery system, holding named Docker images, available in different tagged versions. Example: the image distribution/registry , with tags 2.0 and 2.1 . Users interact with a registry by using docker push and pull commands.


2 Answers

The link to the list of Google Container Registry public images is: https://console.cloud.google.com/gcr/images/google-containers/GLOBAL.

like image 181
Chris Jones Avatar answered Sep 19 '22 17:09

Chris Jones


tl;dr There is no such thing, at least today.

GCR is first and foremost a private registry. However, we respect the ACL's that users put on the GCS bucket backing their repository. This is how we offer anonymous read to buckets like:

gcr.io/google-containers/... gcr.io/google-appengine/... 

Given a specific project, you can search within it using:

docker search gcr.io/google-containers/<substring> 
like image 22
mattmoor Avatar answered Sep 18 '22 17:09

mattmoor