linux – 从index.docker.io查看docker镜像的标签?

如何在拉动之前查看index.docker.io上的docker镜像可用的标签?使用sudo docker pull debian将获得与debian相关的所有标签,我不需要.

最佳答案
截至今日the Docker registry在索引中公布了这一点.例如,参见Ubuntu base image tags,其显示每个标签和每个层的文件系统内容.通过API:

$curl https://index.docker.io/v1/repositories/ubuntu/tags
[{"layer": "9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6","name": "latest"},{"layer": "9cc9ea5ea540116b89e41898dd30858107c1175260fb7ff50322b34704092232","name": "10.04"},...

相关文章

Docker是什么Docker是 Docker.Inc 公司开源的一个基于 LXC技...
本文为原创,原始地址为:http://www.cnblogs.com/fengzheng...
镜像操作列出镜像:$ sudo docker imagesREPOSITORY TAG IMA...
本文原创,原文地址为:http://www.cnblogs.com/fengzheng/p...
在 Docker 中,如果你修改了一个容器的内容并希望将这些更改...
在Docker中,--privileged 参数给予容器内的进程几乎相同的权...