From 22afaa628f319c852c536824cdd18444ddf87665 Mon Sep 17 00:00:00 2001 From: Prasanna Gautam Date: Sun, 9 Nov 2014 10:16:47 -0500 Subject: [PATCH] Additional info for docker binary Signed-off-by: Prasanna Gautam I found that certain docker installations do not handle binding to the source directory quite right. Just writing it based on help from backjlack and tibor in IRC. --- docs/sources/contributing/devenvironment.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/sources/contributing/devenvironment.md b/docs/sources/contributing/devenvironment.md index ee120a79c..a5c2cc305 100644 --- a/docs/sources/contributing/devenvironment.md +++ b/docs/sources/contributing/devenvironment.md @@ -63,7 +63,11 @@ To create the Docker binary, run this command: $ sudo make binary -This will create the Docker binary in `./bundles/-dev/binary/` +This will create the Docker binary in `./bundles/-dev/binary/`. If you do not see files in the `./bundles` directory in your host, your BINDDIR setting is not set quite right. You want to run the following command: + + $ sudo make BINDDIR=. binary + +If you are not in Linux - for example: OSX, you want to run `make cross` or `make BINDDIR=. cross`. ### Using your built Docker binary