Centos上安裝Docker-CE,後運行docker run hello-world
報錯Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
docker
解決辦法$ systemctl daemon-reload
unix
$ sudo service docker restart
$ sudo service docker status (should see active (running))
$ sudo docker run hello-world