Docker

Sep 8, 2020
1 min read
May 27, 2023 09:13 EEST

With virtualbox

Docker and virtualbox are not working together.

Docker uses Hyper-V which breaks Virtualbox.

To disable Hyper-V execute in an admin shell:

bcdedit /set hypervisorlaunchtype off

and reboot.

To enable it again:

bcdedit /set hypervisorlaunchtype auto

and reboot.


Related Posts