Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Boot2Docker start up fails in windows

I am trying to start docker from winodws7 enterprise edition.

 boot2docker start

results

 Waiting for VM and Docker daemon to start...
 ..........................................................................oooooo
 oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo
 Started.
 Trying to get Docker socket one more time
 Error requesting socket: exec: "ssh": executable file not found in %PATH%
 Docker client does not run on Windows for now. Please use
 "boot2docker" ssh
 to SSH into the VM instead.

I tried this link. But All answers doesn't help me. I have re-installed the boot2docker and powered off boot2docker-vm in Virtual machine and restarted. Virtualisation is enabled in my bios. My Sys has better capabilities.

Using 1.4.1 version.

Please Some Suggestions?

like image 417
Gibbs Avatar asked Dec 22 '14 04:12

Gibbs


1 Answers

As boot2docker complained, you don't have ssh in your path. Please add ssh.exe into Windows path (it might not be visible, but boot2docker installation includes msys-git installation which includes ssh.exe, so you need to add Git installation directory in path, e.g.

c:\Program Files (x86)\Git\bin
like image 190
Magic Wand Avatar answered Sep 18 '22 21:09

Magic Wand