docker push 镜像到本地仓库
Posted zheh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker push 镜像到本地仓库相关的知识,希望对你有一定的参考价值。
[email protected]:# uname -a Linux ubuntu 4.4.0-116-generic #140-Ubuntu SMP Mon Feb 12 21:23:04 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
1、如果dockerhub的https证书是非权威机构的需要执行,需要添加证书信任
[email protected]:# echo -n | openssl s_client -showcerts -connect dockerhub.xx.com:443 2>/dev/null | sed -ne ‘/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p‘ >> /etc/ssl/certs/dockerhub.xx.com.crt
[email protected]:# update-ca-certificates
2、修改/etc/docker/daemon.json
[email protected]:# cat /etc/docker/daemon.json
{ "registry-mirrors": ["https://dockerhub.xx.com"] }
最后重启docker
[email protected]:# service docker restart
以上是关于docker push 镜像到本地仓库的主要内容,如果未能解决你的问题,请参考以下文章