Docker在Windows10中不起作用
我正在使用Docker version 1.12.2, build bb80604
和VirtualBox 5.1.6
。
我能够Docker Toolbox
正确安装,但无法启动默认VM。
我试图按照此处给出的说明进行操作,但仍然The system cannot find the filespecified
出现错误。我尚未Hyper-V
在系统上启用。
F:\>docker-machine lsNAME 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.
我该如何解决这个问题?
回答:
您的docker-machine默认计算机似乎发生了一些问题。
要恢复,请执行以下操作:
docker-machine rm -f default
接下来,打开virtualbox GUI并确保没有与该旧“默认” VM相对应的VM,以防万一。如果有,请从那里手动将其删除。
现在,再次打开快速入门终端,它将为您创建一个新的“默认”虚拟机。
或者,您可以像这样创建它:
docker-machine create -d virtualbox --virtualbox-memory 2048 default
到那时,您的命令序列将再次按预期工作。
以上是 Docker在Windows10中不起作用 的全部内容, 来源链接: utcz.com/qa/424314.html