美文网首页
Cannot connect to the Docker dae

Cannot connect to the Docker dae

作者: Poppy11 | 来源:发表于2020-11-24 10:24 被阅读0次
    1. 例如我查看版本信息


      image.png

    2.重启容器


    image.png
    1. systemctl status docker 查看docker状态也发现错误:
    image.png

    最后解决问题方法是:
    进入 /etc/docker,没有daemon.json文件就自己新建一个:

    cd /etc/docker
    

    编辑daemon.json文件:
    加入这段代码:

    {
     "registry-mirrors": ["https://registry.docker-cn.com"]
    }
    

    然后重启docker:

    systemctl restart docker.service
    

    再使用docker命令时,就没有问题了

    相关文章

      网友评论

          本文标题:Cannot connect to the Docker dae

          本文链接:https://www.haomeiwen.com/subject/uhudiktx.html