什么是仓库
- docker仓库是用来包含镜像的位置,docker提供一个注册服务器registry来保存多个仓库,每个仓库又可以包含多个具备不同的镜像。
- docker运行中使用的默认仓库是docker hub公共仓库
docker hubdocker push username/busybox:latest
docker hub是docker公司维护的公共仓库,用户可以免费使用,也可以购买私有仓库。
docker hub的使用:
1、 首先在https://hub.docker.com/网站注册一个账号
2、在docker hub上新建一个公共仓库
3、创建之后可以看到公共仓库,接下来要从docker主机上传镜像,首先需
[root@server1 ~]# docker login
Username: username
Password: passwd
4、docker hub为了区分不同用户的同名镜像,要求镜像的格式是:[username]/xxx.tag
docker tag busybox:latest username/busybox:latest
5、上传镜像到docker hub
docker push username/busybox:latest
6、从docker hub拉取镜像
docker pull use