我在Intellij中在Windows计算机上运行docker时遇到问题。我收到2个错误:
每次遇到此问题时,我都会重新启动Docker Server,但现在我正在执行以下操作,我认为这已解决了我的问题...手指交叉。
docker stop $(docker ps -q) //to stop ALL containers; only runs in GIT Bash
下一步,我确保端口不忙,如果端口被杀死,我将终止正在运行的任务
netstat -ano | findstr :<port> *//do this to get the PID*
taskkill /PID <PID> /F *//this tells it to forcefully stop
我希望这对其他人有帮助!