我如何从 Google Container Registry 中找出我的容器镜像使用了多少 space
How can I find out how much space is used by my container images from the Google Container Registry
我已使用 gcloud docker push
将容器映像推送到 Google 容器注册表。两个问题:
我如何查看 space 我的所有图像使用了多少? (我可以看到单独的图像,但我想要一个总数,以免导航到所有图像并求和)
好问题!
您所有的 Docker 图像都存储在名为 artifacts.<PROJECT-ID>.appspot.com
的 Google Cloud Storage 存储桶中(将 <PROJECT-ID>
替换为您的项目 ID)
求总space,运行gsutil du gs://artifacts.<PROJECT-ID>.appspot.com
我已使用 gcloud docker push
将容器映像推送到 Google 容器注册表。两个问题:
我如何查看 space 我的所有图像使用了多少? (我可以看到单独的图像,但我想要一个总数,以免导航到所有图像并求和)
好问题!
您所有的 Docker 图像都存储在名为 artifacts.<PROJECT-ID>.appspot.com
的 Google Cloud Storage 存储桶中(将 <PROJECT-ID>
替换为您的项目 ID)
求总space,运行gsutil du gs://artifacts.<PROJECT-ID>.appspot.com