Cannot connect to the Docker daemon. Is the docker daemon running on this host? 原因: 沒有啟動docker服務 service docker start 效果: docker stop showdoc # 停止容器 d ...
Cannot connect to the Docker daemon. Is the docker daemon running on this host?
原因: 沒有啟動docker服務
service docker start
效果:
docker stop showdoc # 停止容器
docker restart showdoc #重啟showdoc容器
docker rm showdoc #刪除showdoc容器
docker rmi star7th/showdoc #刪除showdoc鏡像
docker stop $(docker ps -a -q) ;docker rm $(docker ps -a -q) ; #停止並刪除所有容器。危險命令,不懂勿用。