Docker - 私有仓库
私有仓库搭建
1.拉取私有仓库镜像
docker pull registry
2.启动私有仓库容器
docker run -id --name=registry -p 5000:5000 registry
3.用浏览器输入 http://私有仓库ip:5000/v2/_catalog ,看到{"repositories":[]},表示搭建成功
4.修改daemon.json,加入以下内容,此步用于让 docker 信任私有仓库地址
"insecure-registries":["192.168.184.152:5000"]
5.重启 docker 服务
systemctl restart docker
docker start registry
上传镜像到私有仓库
1.对要上传到私服的镜像做标记
docker tag centos:7 192.168.184.152:5000/centos:7
2.推到私服
docker push 192.168.184.152:5000/centos:7
打了标记的镜像:
查看私服上的镜像
从私有仓库拉取镜像
docker pull 192.168.184.152:5000/centos:7
本文来自博客园,作者:chuangzhou,转载请注明原文链接:https://www.cnblogs.com/czzz/p/16512059.html