Search code examples
imagelistpublicgoogle-container-registry

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.


Solution

  • 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>