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
vim /etc/docker/daemon.json #添加私有仓库key,(逗号隔开)保存退出,让docker信任私有仓库地址
5.重启docker服务
systemctl restart docker
docker start registry

上传镜像到私有仓库

1.标记镜像是私有仓库的镜像
docker tag centos:7 私有仓库服务器ip:5000/centos:7
2.上传标记的镜像
docker push 私有仓库服务器ip:5000/centos:7

从私有仓库拉取镜像

docker pull 镜像名称/ID

你可能感兴趣的:(Docker_私有仓库)