1 环境
2 步骤
3 FAQ
4 参考
环境
ubuntu-16.04-desktop-amd64.iso
步骤
具体可参考博文,在我的环境实施成功,在此借花献佛了:http://www.cnblogs.com/lienhua34/p/4922130.html
FAQ
上面的博文唯一对push失败的解决方案,在我的环境里不生效,
错误提示如下:
[email protected]:/etc/default# sudo docker push 192.168.80.130:5000/hello-world
The push refers to a repository [192.168.80.130:5000/hello-world]
Get https://192.168.80.130:5000/v1/_ping: http: server gave HTTP response to HTTPS client
我用另一种方式解决的,步骤如下:
[email protected]:/etc/docker# echo ‘{ "insecure-registries":["192.168.80.130:5000"] }‘ > /etc/docker/daemon.json
[email protected]:/etc/docker# systemctl restart docker
执行上述两个命令后,重试docker push 成功:
[email protected]:/etc/docker# docker push 192.168.80.130:5000/hello-world
The push refers to a repository [192.168.80.130:5000/hello-world]
a02596fdd012: Pushed
latest: digest: sha256:f18d040ea7bf47c7ea8f7ff1a8682811cf37551c747158e37b9c75f5450e6fac size: 2097
参考
http://www.111cn.net/sys/linux/118539.htm