Ubuntu14.04上Fig出现Couldn’t connect to Docker daemon …问

Ubuntu 14.04上正确安装的Docker和Fig后,Docker可以正常使用,但是在使用Fig的时候出现下面的错误

Couldn't connect to Docker daemon at http+unix://var/run/docker.sock - is it running?
If it's at a non-standard location, specify the URL with the DOCKER_HOST environment variable.

1. 编辑/etc/default/docker.io文件,加入

DOCKER_OPTS="-H tcp://127.0.0.1:4243 -H unix:///var/run/docker.sock"

2. 重启 docker 服务

sudo service docker.io restart

3. 检查并确定 Docker 运行在 localhost:4243

$ netstat -ant  |grep 4243

tcp        0      0 127.0.0.1:4243          0.0.0.0:*              LISTEN

4. 设置 DOCKER_HOST 环境变量,可以添加到 ~/.bashrc 文件中

export DOCKER_HOST=tcp://localhost:4243

5. 再次运行开始出现错误的 Fig 命令,问题消失。

Docker编排工具Fig介绍 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/108bce8d4151d375139fd81ca287f343.html