Docker does not work on Windows10

I use Docker version 1.12.2, build bb80604and VirtualBox 5.1.6.

I managed to install Docker Toolboxcorrectly, but I can not start the default virtual machine.

I tried to execute the instruction here , but I still get the error The system cannot find the file specified. I do not have it Hyper-Vturned on in the system.

F:\>docker-machine ls
NAME      ACTIVE   DRIVER      STATE   URL   SWARM   DOCKER   ERRORS
default            not found   Error                          open C:\Users\Animesh\.docker\machine\machines\default\config.json: The system cannot find the file specified.

F:\>docker-machine env --shell=cmd
open C:\Users\Animesh\.docker\machine\machines\default\config.json: The system cannot find the file specified.

F:\>docker rm default
An error occurred trying to connect: open //./pipe/docker_engine: The system cannot find the file specified.

How can I solve this problem?

+4
source share
1 answer

It looks like something happened to your machine by default on the docker machine.

To restore, follow these steps:

docker-machine rm -f default

, , "" . , .

, .

:

docker-machine create -d virtualbox --virtualbox-memory 2048 default

.

+5

Source: https://habr.com/ru/post/1657819/


All Articles