Amine Ferradji
Amine Ferradji

Reputation: 1

Error while creating a docker-machine SSH error: Maximum number of retries (60) exceeded

I am trying to create docker machine with a virtual machine using oracle virtualbox and ubuntu server 16.04 on windows 10 pro with the following command:

$ docker-machine create -d virtualbox manager2

but process ends with this error:

Error with pre-create check: "This computer doesn't have VT-X/AMD-v enabled. Enabling it in the BIOS is mandatory" 

while VT-X is enabled (I have an intel cpu)

Upvotes: 0

Views: 159

Answers (1)

Go For Pro
Go For Pro

Reputation: 87

This helped me out to solve the same error:

docker-machine create -d virtualbox --virtualbox-memory=4096 --virtualbox-cpu-count=4 --virtualbox-disk-size=40960 --virtualbox-no-vtx-check default

Upvotes: 1

Related Questions