Docker installation issues on Windows 10 Home Edit

2019-03-12 01:22发布

I am facing problem while installing the Docker on my machine. OS is Windows 10 Home Edition. I want to use Splash and that needs Docker.

enter image description here

标签: docker
3条回答
Bombasti
3楼-- · 2019-03-12 02:11
1. Enable from BIOS
2. CPU virtualization is allowed only for 1 tool on Windows 10 Home. So, remove any other virtualization tool. 
   So, uncheck even Windows Hypervisor Platform in 'Turn Windows features on and off'
3. Disable Credential Guard as per https://docs.microsoft.com/en-us/windows/security/identity-protection/credential-guard/credential-guard-manage
This doesn't happens when the credential helper is run in 'Administrative mode', reason being that running scripts is disabled, we need to enable it
    So, as per https://winaero.com/blog/change-powershell-execution-policy-windows-10/
    Open 'Command Prompt' in 'Administrator' mode and type -

    cd C:\Windows\System32\WindowsPowerShell\v1.0\
    C:\Windows\System32\WindowsPowerShell\v1.0>Powershell.exe -ExecutionPolicy Unrestricted -File E:\software\dgreadiness_v3.6\DG_Readiness_Tool_v3.6.ps1 -Disable -AutoReboot

    After this, the system reboots and credential guard is disabled
查看更多
贼婆χ
4楼-- · 2019-03-12 02:20

Virtualization must be enabled.

https://docs.docker.com/docker-for-windows/install/

I enabled Virtualization in my BIOS settings. Then in Windows > Task Manager > Performance it displays "Virtualization: Enabled"

查看更多
登录 后发表回答