Find the list of Google Container Registry public images

后端 未结 4 845
面向向阳花
面向向阳花 2021-01-30 06:50

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.

4条回答
  •  走了就别回头了
    2021-01-30 07:14

    I think there's a different answer to this question now:

    You can run:

    $ gcloud container images list --project google-containers
    
    NAME
    gcr.io/google-containers/addon-resizer
    gcr.io/google-containers/aggregator
    gcr.io/google-containers/alpine-iptables-amd64
    gcr.io/google-containers/alpine-iptables-arm
    gcr.io/google-containers/alpine-iptables-arm64
    gcr.io/google-containers/alpine-with-bash
    gcr.io/google-containers/apparmor-loader
    gcr.io/google-containers/busybox
    gcr.io/google-containers/cadvisor
    ...
    

    You can also directly use gsutil to list all the blobs in a public GCR bucket with:

    gsutil list gs://artifacts.PROJECT_ID.appspot.com/containers/repositories
    

提交回复
热议问题