neurons firing from a keyboard

thoughts about devops, technology, and faster business from a random guy from dallas.

Wiring up Docker on Windows to Ubuntu on Windows

Reading Time: Approximately 1 minutes.
View this post on GitHub.

Getting docker running on Ubuntu on Windows is pretty simple. After installing the Docker Windows engine and restarting, run this in a bash session to bind the two together:

export DOCKER_HOST=tcp://0.0.0.0:2375

Pop this into your .bashrc and never think about it again.

Thanks to this StackOverflow post for the tip.