docker registry的https错误解决

从docker1.3.2版本开始默认docker registry使用的是https,当你用docker pull 非https的docker regsitry的时候会报下面错误:

  1. Error: Invalid registry endpoint ... Get ... If this private registry supports only HTTP or HTTPS with an unknown CA certificate, please add '--insecure-registry 192.168.1.103:5000' to the daemon's arguments. In the case of HTTPS, if you have access to the registry's CA certificate, no need for the flag; simply place the CA certificate at /etc/docker/certs.d/192.168.1.103:5000/ca.crt

解决方案:

  1. vi /usr/lib/systemd/system/docker.service

内容修改如下:

  1. [Unit]
  2. Description=Docker Application Container Engine
  3. Documentation=http://docs.docker.com
  4. After=network.target docker.socket
  5. Requires=docker.socket
  6. [Service]
  7. Type=notify
  8. EnvironmentFile=-/etc/sysconfig/docker
  9. EnvironmentFile=-/etc/sysconfig/docker-storage
  10. ExecStart=/usr/bin/docker -d --insecure-registry 192.168.1.103:5000  -H fd:// $OPTIONS $DOCKER_STORAGE_OPTIONS
  11. LimitNOFILE=1048576
  12. LimitNPROC=1048576
  13. [Install]
  14. WantedBy=multi-user.target
上一篇:EndNote在Word中插入文献不能自动生成编号 - 解决方案


下一篇:[译]Walkthrough: Using MSBuild