Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Mac 上使用 Docker 工具箱。
docker push挂着。我如何硬重启守护进程或 docker-machine VM 以使这个以一种不好的方式解除挂起。等待它的时间太长了。
docker push
你可以运行:
docker-machine stop <name-of-your-docker-machine>
这通常是:
docker-machine stop default
下一个选项:
docker-machine kill default
您是否检查过您docker machine是否正在运行:
docker machine
docker-machine ls
蛮力方法:
kill -9 `ps -Af | grep -v grep | grep VBoxHeadless | awk '{print $2}'`