Can not pull/push images after update docker to 1.12

前端 未结 8 1192
长发绾君心
长发绾君心 2020-12-22 17:52

The private registry was worked well based on docker 1.10.3,but I can not pull/push images after the docker updated to 1.12.0.

I had modified the /etc/sysconfig/dock

8条回答
  •  半阙折子戏
    2020-12-22 18:28

    I also had same issue and followed below steps:

    1. Create file

     vi /etc/docker/daemon.json
    

    2. Add below content

    {
            "insecure-registries":["192.168.1.142:5000"]
     }
    

    3.Restart Docker

    service docker restart
    

提交回复
热议问题