I\'m running Mac OS 10.9.5 (Mavericks), I\'ve followed https://docs.docker.com/installation/mac/ to install Docker. I get a timeout error message when I run Docker even though t
Here's what worked for me when I hit a similar snag. Make sure you've upgraded VirtualBox, then:
boot2docker stop
boot2docker init
boot2docker start; eval "$(boot2docker shellinit)"
Then, just for sanity's sake, check that $DOCKER_HOST
matches $(boot2docker ip)
. I suspect I had many things going on, as when I first started, $DOCKER_HOST
had become unset somehow.
The issue and some discussion can be found in the GitHub issues page here - it does rather seem as if it's often just a case of VirtualBox being flaky.