From c98b3a3faf3183ea25f7e6a4fa1287ac2458580e Mon Sep 17 00:00:00 2001 From: AndrewGibson27 Date: Wed, 25 Jan 2017 12:04:22 -0600 Subject: [PATCH] add note about syncing files with docker volumes --- INSTALL.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index 825768b4..7b984c8f 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -133,6 +133,12 @@ Now you can run Audiogram in a container using that image: docker run -p 8888:8888 -t -i audiogram ``` +If you're using an editor like Sublime or Atom and want file changes to be automatically reflected inside the Docker container, try using Docker volumes. Instead of the above `docker run` command, try: + +```sh +docker run -v $(pwd):/home/audiogram/audiogram -p 8888:8888 -t -i audiogram +``` + ## Mac troubleshooting If things aren't working on a Mac, there are a few fixes you can try.