OStack程序员社区-中国程序员成长平台

标题: url - docker hub的url设计是什么意思? [打印本页]

作者: 菜鸟教程小白    时间: 2022-8-3 10:12
标题: url - docker hub的url设计是什么意思?

https://registry.hub.docker.com/_/ubuntu/
有一个_在产品名称之前的网址中。

它是做什么用的?



Best Answer-推荐答案


如果您在 dockerhub 上有帐户叫 foobar :

# pull from your account (foobar)
docker pull foobar/ubuntu:latest

否则,如果您省略用户名:
# pull from the official account (library)
docker pull ubuntu:latest
# almost the same as
docker pull library/ubuntu:latest

下划线( _ )是用于发布官方存储库的特殊命名空间。

https://registry.hub.docker.com/_/ubuntu/https://registry.hub.docker.com/u/library/ubuntu/ 几乎相同

唯一的区别是您将获得具有相同图像 ID 的不同图像名称:
$ docker pull ubuntu:latest
$ docker pull library/ubuntu:latest
$ docker images

REPOSITORY                                TAG                 IMAGE ID            CREATED             VIRTUAL SIZE
library/ubuntu                            latest              86ce37374f40        7 days ago          192.7 MB
ubuntu                                    latest              86ce37374f40        7 days ago          192.7 MB

关于url - docker hub的url设计是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27264113/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4