Docker-Compose can't connect to Docker Daemon

后端 未结 18 1104
死守一世寂寞
死守一世寂寞 2020-12-22 20:25

I am getting an error message saying I can\'t connect to the docker daemon. I have looked into other people\'s answers who have had similar issues but it hasn\'t helped. I

18条回答
  •  悲哀的现实
    2020-12-22 21:02

    From the output of "ps aux | grep docker", it looks like docker daemon is not running. Try using below methods to see what is wrong and why docker is not starting

    1. Check the docker logs

    $ sudo tail -f /var/log/upstart/docker.log

    1. Try starting docker in debug mode

    $ sudo docker -d -D

提交回复
热议问题