0

I am trying to install on my "WIN10 Home" the Docker Toolbox. When executing the docker quickstart terminal, I am getting this error:

Running pre-create checks...
Error with pre-create check: "VirtualBox is configured with multiple host-only adapters with the same name \"HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter\". Please remove one"
Adiii
  • 54,482
  • 7
  • 145
  • 148
  • if any of the answers solved your issue please accept the appropriate answer to share the resolution with the community. If not please provide further information or share your own solution. Thank you – ckaserer Dec 23 '19 at 08:52

1 Answers1

-1

It seems like you need to remove one of your host-only network adapters in VirtualBox due to the fact that there are 2 with the same name

"HostInterfaceNetworking-VirtualBox"

and that you should manually remove one. You can do that either with the UI or via commandline

vboxmanage hostonlyif remove "HostInterfaceNetworking-VirtualBox"
ckaserer
  • 4,827
  • 3
  • 18
  • 33