配置阿里云镜像加速,执行docker命令出错Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the doc

Posted 型男一枚

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置阿里云镜像加速,执行docker命令出错Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the doc相关的知识,希望对你有一定的参考价值。

解决方案

1、vim进入阿里云镜像加速配置文件

vim /etc/docker/daemon.json

2、修改配置文件

完整的配置

sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-‘EOF’
{
“registry-mirrors”: [“https://06wo2xso.mirror.aliyuncs.com”]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker

需要删除{}上面两条指令
改为如下即可

{
  "registry-mirrors": ["https://06wo2xso.mirror.aliyuncs.com"]
}
sudo systemctl daemon-reload
sudo systemctl restart docker

3、保存退出,重启即可

[root@javaEE ~]# systemctl start docker
[root@javaEE ~]# docker images
REPOSITORY    TAG       IMAGE ID       CREATED        SIZE
tomcat        latest    710ec5c56683   10 hours ago   668MB
nginx         latest    08b152afcfae   2 weeks ago    133MB
hello-world   latest    d1165f221234   5 months ago   13.3kB
centos        latest    300e315adb2f   8 months ago   209MB

以上是关于配置阿里云镜像加速,执行docker命令出错Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the doc的主要内容,如果未能解决你的问题,请参考以下文章

docker 安装配置

docker-阿里云镜像加速配置

Docker学习重点~docker安装配置阿里云镜像加速

Docker安装及阿里云镜像加速器配置

Docker配置阿里云镜像加速pull

Docker阿里云镜像加速器 for CentOS 7