英文:
List docker repositoris in GCR using golang
问题
我想使用go
来列出我在GCR中的所有仓库。
我找到了这个库。
然而,我只看到了一个List
函数,它似乎是用于列出特定仓库的镜像/标签的(即需要事先知道仓库的名称/URL)。
你知道是否有一种选项可以列出仓库(以便稍后可以列出每个仓库的镜像)?
英文:
I want to use go
to list all my repositories in GCR.
I have come across this library.
However, the only List
function I see seems to be for listing images/tags for a specific repo. (i.e. it requires a priori knowledge of the repo name / url)
Any idea if there is an option for listing repositories (so that one can later list the images for each repo)?
答案1
得分: 1
你可以使用remote.Catalog
函数来列出仓库。
在crane
CLI程序的示例用法中可以看到。
英文:
You can use the remote.Catalog
function for listing repositories.
See example usage in the crane
CLI program.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论