Cannot start docker after installation on Windows

前端 未结 9 1956
难免孤独
难免孤独 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:39

    You need to disable Hypervisor to check new application that use VT-x before the virtual machine launch:

    1. Open the command prompt as Administrator

    2. Run bcdedit to check hypervisor status:

    3. Check hypervisor launch type.

    4. If is set to auto then disable it:

      bcdedit /set hypervisorlaunchtype off 
      
    5. Reboot host machine and launch VirtualBox again

    After performing above steps I opened again Docker Quickstart terminal and it is working fine.

提交回复
热议问题