简介
Docker的Hub上可以保存镜像,但是这个站点会比较慢,如果有需求的话可以本地搭建一个私有仓库,方便管理,使用也比较方便。
安装
第一步:安装
yum install -y docker-distribution
第二步:启动
systemctl start docker-distribution
第三步:打标签
将镜像打上标签为 192.168.253.128/centos:latest
docker image tag docker.io/centos 192.168.253.128:5000/centos:latest
第四步:推送到私有仓库
docker image push 192.168.253.128:5000/centos
推送的过程中显示链接拒绝,这里是因为传输的时候不是https协议,所以出问题
解决的方法有2个,第一使用https链接,第二修改参数允许http传输。
这里使用第二种方式直接改一下参数,修改 /etc/docker/daemon.json文件(如果不存在可以创建)
(解决这个问题可以参考官方文档 https://docs.docker.com/registry/insecure/#deploy-a-plain-http-registry)
添加下面参数(这里的ip跟你的私有仓库地址有关)
{
"insecure-registries" : ["192.168.253.128:5000"]
}
然后重启一下docker
systemctl restart docker
再次推送
docker image push 192.168.253.128:5000/centos
现在可以看到推送成功了。
参考文档
https://docs.docker.com/config/daemon/systemd/#httphttps-proxy
https://docs.docker.com/registry/insecure/#deploy-a-plain-http-registry)