Cannot connect to the Docker daemon. Is the docker daemon running on this host?

 

原因: 没有启动docker服务

service docker start

效果:

docker安装后出现Cannot connect to the Docker daemon.

 

 

  1. docker stop showdoc # 停止容器
  2. docker restart showdoc #重启showdoc容器
  3. docker rm showdoc #删除showdoc容器
  4. docker rmi star7th/showdoc #删除showdoc镜像
  5. docker stop $(docker ps -a -q) ;docker rm $(docker ps -a -q) ; #停止并删除所有容器。危险命令,不懂勿用。

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-02
  • 2021-11-29
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-21
  • 2022-01-21
  • 2022-12-23
相关资源
相似解决方案