Docker for Windows not working

后端 未结 19 950
自闭症患者
自闭症患者 2020-12-07 10:56

I\'ve installed Docker toolbox now and I get the error for everything:

Get http://127.0.0.1:2375/v1.20/version: dial tcp 127.0.0.1:2375: ConnectExtcp: No con         


        
19条回答
  •  渐次进展
    2020-12-07 11:48

    Had the same issue as you showed and Just fixed it a few hours ago.

    All need to do is disable Hyper-V. Run a command prompt with administrator rights and run the following command:

    bcdedit /set hypervisorlaunchtype off
    

    Restart your PC, open virtualbox and delete default vm after relaunch, go back to docker quickstart terminal and put the following in command:

    docker run hello-world
    

    and you're done! Hope it solves your problem

提交回复
热议问题