docker: ERROR: Couldn‘t connect to Docker daemon at http+docker://localhost

环境: linuxt centos 7.x

如下图, 使用docker-compose时,提示错误

[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

sudo systemctl start docker  

2、 当前用户不在docker用户组
将当前用户加入docker组

sudo gpasswd -a ${USER} docker

通过【重新登录shell】或者【切换为root再切换成当前用户】,使修改生效。

说明
建议使用官方方法安装docker。
https://docs.docker.com/desktop/install/linux-install/

你可能感兴趣的:(kubernetes,docker,eureka,容器)