Google Cloud Container Registry使用gcloud命令在子目录中列出图像

时间:2019-02-20 09:37:26

标签: docker google-cloud-platform gcloud docker-registry

如何在Google Cloud Container注册表的“子目录”中获取图像列表?

我在GCP上有这些图片:

gcr.io/project-id/website/api
gcr.io/project-id/website/api-builder
gcr.io/project-id/website/frontend
gcr.io/project-id/website/frontend-builder

但是当我发出命令时...

gcloud container images list

只给我

NAME
gcr.io/project-id/website

我希望能够获得project-id/website之类的搜索查询的所有图像,并获得上面的所有4张图像。

如果我发出此命令:

gcloud container images list-tags gcr.io/project-id/website

我当然没有结果。

我搜索了Google并检查了帮助页面,但无济于事。

谢谢!

1 个答案:

答案 0 :(得分:1)

回答我自己的问题。我回到GCP并在用户界面中看到了这一点:

enter image description here

当我看到“存储库”标题时,它单击了。图片在存储库中,可以嵌套。

所以我尝试了以下命令:

gcloud container images list --repository gcr.io/project-id/website

然后回来

NAME
gcr.io/project-id/website/api
gcr.io/project-id/website/api-builder
gcr.io/project-id/website/frontend
gcr.io/project-id/website/frontend-builder