环境: linuxt centos 7.x
如下图, 使用docker-compose时,提示错误
haskell
[explore@bridge tinyproxy]$ docker-compose up
ERROR: Couldn't connect to Docker daemon at http+docker://localhost - is it running?
If it's at a non-standard location, specify the URL with the DOCKER_HOST environment variable.
一般是2种问题:
1、docker未启动:
启动docker
haskell
sudo systemctl start docker
2、 当前用户不在docker用户组
将当前用户加入docker组
haskell
sudo gpasswd -a ${USER} docker
通过【重新登录shell】或者【切换为root再切换成当前用户】,使修改生效。
说明 :
建议使用官方方法安装docker。