码迷,mamicode.com
首页 > 其他好文 > 详细

Docker_registry

时间:2017-11-26 23:00:32      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:class   try   div   logs   gis   odi   usr   check   oca   

#检查端口5000是否被占用
netstat -tunlp | grep 5000
# the local host ip is 172.17.0.1
# pull registry
mkdir -p /opt/myregistry
docker run -d -p 5000:5000 --name registry --restart=always -v /opt/myregistry:/usr/lib/registry registry:2.4.1
# double check the registry is ok.
curl http://172.17.0.1:5000/v2
# modify https to http
echo "{"insecure-registries:["172.17.0.1:5000"]"}"
docker pull busybox
docker tag busybox 172.17.0.1:5000/busybox01
docker rmi busybox
docker push 172.17.0.1:5000/busybox01
docker rmi 172.17.0.1:5000/busybox01
docker pull 172.17.0.1:5000/busybox01

Docker_registry

标签:class   try   div   logs   gis   odi   usr   check   oca   

原文地址:http://www.cnblogs.com/xuelong3/p/7900580.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!