标签:docker
建立私有的registry,使用自制的images,快速的pull和部署cat /etc/docker/daemon.json
{
"registry-mirrors": ["https://mb7ebfhc.mirror.aliyuncs.com"]
}
docker pull registry:0.9.1 \\注意版本号,默认不写就是last
docker run -d --name registry -p 5000:5000 --restart=always -v /opt/registry/:/var/lib/registry/ registry:0.9.1
--restart=always 容器在退出的时候总是重启容器,查找registry存储路径,通过映射volume的方式(/opt/registry/是本地路径),保存push的镜像,每个registry的存储路径都不同,注意查找,映射镜像仓库对应服务器的5000端口
curl http://192.168.1.10:5000/v2/_catalog
测试成功则返回:
{"repositories":[]}
docker ps -a
查看已有镜像
将要push到registry的镜像镜像tag重命名
registry镜像命名规则:
registry仓库地址:端口/放置镜像文件夹名/镜像名:版本号
docker tag centos 192.168.1.10:5000/test/centos:0.71
docker push 192.168.1.10:5000/test/centos:0.71
测试查看是否成功
curl http://192.168.1.10:5000/v2/_catalog
返回则成功
{"repositories":["centos"]}
修改仓库地址,将仓库地址修改成自己的私有地址
{
"insecure-registries":["192.168.1.10:5000"]
}
pull 私有镜像
docker pull centos:0.7.1
标签:docker
原文地址:http://blog.51cto.com/1014810/2105323