I've installed Docker on my Mac about a month ago, and I now wanted to use it again. The command eval "$(docker-machine env default)"
used to work perfectly before, but I now get an error:
Error checking TLS connection: default is not running. Please start it in order to use the connection settings
I searched around for this error, but I can't really find anything about it. Does anybody know what I should do to solve this? All tips are welcome!
Your boot2docker virtual machine must be running inside Virtualbox.
List your Docker machines:
Start default machine:
To recreate your default machine:
Then you should be able to setup your env with
eval "$(docker-machine env default)"
.