Running Docker for Windows, Error when exposing Ports

后端 未结 10 1550
天命终不由人
天命终不由人 2021-01-31 01:10

I am aware there are a lot of questions about running Docker on windows, however this question is about running the brand new Docker for Windows, on Windows.
In my case I am

10条回答
  •  长情又很酷
    2021-01-31 02:03

    For Linux - Debian Users,

    Use docker stop $(docker ps -a -q) only when you know whether you want to stop all the containers or not.... If yes then please run docker rm $(docker ps -a -q) to remove containers ....

    Then stop the docker daemon - systemctl stop docker Then start docker daemon - systemctl start docker

    Also verify whether docker daemon is up or not - service docker status

    After following all above mention steps you should be fine.....

提交回复
热议问题