在 Google Compute Engine 上使用 docker-compose

在 Google Compute Engine 上使用 docker-compose

我已经使用 Ubuntu 16.04 设置了一个实例,并按照说明安装了 Docker CE。

dockerd 正在运行,docker-containe 也在运行

当我尝试运行时:

$ docker-compose up
ERROR: Couldn't connect to Docker daemon at http+docker://localunixsocket - is it running?

If it's at a non-standard location, specify the URL with the DOCKER_HOST environment variable.

我认为此错误是 Google Compute Engine 所特有的。有人能告诉我在哪里可以修复它吗?

答案1

在一些情况下,这是由于当前用户不在该docker组中。

sudo usermod -aG docker current_user就可以解决这个问题。

相关内容