标签:busybox 查看 curl system cer tar Dokcer gis 自动
1、自定义私有仓库概念docker pull registry
vim /etc/docker/daemon.json
{
"insecure-registries":["192.168.1.194:5000"]
}
(3)重启dockersystemctl restart docker
(4)启动私有仓库docker run -d -p 5000:5000 registry
(5)打标签(指定往哪个ip和端口上传)docker tag busybox:latest 192.168.1.194:5000/busybox:latest
(6)上传docker push 192.168.1.194:5000/busybox:latest
3、客户端去使用远程镜像:
(1)首先要修改配置,与194主机一样的配置scp /etc/docker/daemon.json root@192.168.1.180:/etc/docker
(2)重启服务systemctl restart docker
(3)启动远程镜像docker run -it 192.168.1.194:5000/busybox:latest
4、查询私有仓库中的镜像
只要能ping通私有仓库ip的主机就能查询:
(1)查看有什么样的镜像
curl http://192.168.1.194:5000/v2/_catalog
(2)查询私有仓库中的镜像标签
curl http://192.168.1.194:5000/v2/busybox/tags/list
---->v2:版本
———>busybox:镜像名
——>tags:指定查标签
——>list:列出。
标签:busybox 查看 curl system cer tar Dokcer gis 自动
原文地址:http://blog.51cto.com/13731599/2134510