镜像仓库的搭建
- docker run -d \
- --restart=always \
- --name registry \
- -p 5000:5000 \
- -v /root/devops/registry/data:/var/lib/registry \
- registry
安装完之后,执行下面命令可以看到镜像仓库已经安装成功
docker ps
然后在浏览器上输入下面地址进行访问
再配置vi /etc/docker/daemon.json
- {
- "insecure-registries" : [ "http://ip:5000" ] #ip改成自己的
- }
先在另外一台机器上使用docker images查看docker镜像,里面有一个hello/gocd-agent-hello的镜像
然后开始打包上传
docker tag hello/gocd-agent-hello ip:5000/gocd-agent-hello
然后在这台机器上也vi /etc/docker/daemon.json配置
- {
- "insecure-registries": ["ip:8081","ip:5051","ip:5052","ip:5000","http://ip:5000"]
- }
开始推送:
docker push ip:5000/gocd-agent-hello