环境: 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再切换成当前用户】,使修改生效。文章来源:https://www.toymoban.com/news/detail-698433.html
说明:
建议使用官方方法安装docker。
https://docs.docker.com/desktop/install/linux-install/文章来源地址https://www.toymoban.com/news/detail-698433.html
到了这里,关于docker: ERROR: Couldn‘t connect to Docker daemon at http+docker://localhost的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!