What's the right way to set up a development environment on OS X with Docker?
Intro I can't figure out a good way to set up a development environment on OS X using Docker and Boot2Docker. The problem I'm hitting is how to manage the source code so that: I can modify the code on OS X using the tools (text editor, IDE, git, etc) I already have installed. Those modifications are reflected in the Docker container so if I re-run tests or refresh a webpage, I can see my changes immediately. In theory, this should be easy to do by mounting my source code as a volume: docker run -it -v /path/to/my/source/code:/src some-docker-image Unfortunately, this has two major issues that