Cannot start docker after installation on Windows

前端 未结 9 1930
难免孤独
难免孤独 2020-12-23 02:04

I am a new to Docker. After the installation of Docker Toolbox (OS: Windows 10) I run Docker Quickstart Terminal and in the console I see this:

Running pre-c         


        
相关标签:
9条回答
  • 2020-12-23 02:59

    Docker supports Hyper-V as the driver

    You need to perform the following steps:

    • Create a virtual switch, refer to this article on how to do that

    • Create a docker machine using that network switch and hyper-V driver.

      docker-machine create -d hyperv --hyperv-virtual-switch "name of the virtual switch created above" default
      
    0 讨论(0)
  • 2020-12-23 03:01

    I set the Hyper-V off using windows feature on off and it worked for me.

    0 讨论(0)
  • 2020-12-23 03:02

    I was having the same issue, and this blog post solved it. The author runs you through the steps of adding the --virtualbox-no-vtx-check flag to the docker shell script.

    Virtualbox and Hyper-V don't play well together. I am NOT the author.

    0 讨论(0)
提交回复
热议问题