From 3648d21c65db28b2bdade852e34cf677f6b773cf Mon Sep 17 00:00:00 2001 From: Sven Dowideit Date: Wed, 12 Feb 2014 16:30:18 +1000 Subject: [PATCH] tell the reader that they need git and make for this tutorial Docker-DCO-1.1-Signed-off-by: Sven Dowideit (github: SvenDowideit) Upstream-commit: d9f215eb2a48e6e836af9cc4015c73f17dc5be9e Component: engine --- .../docs/sources/contributing/devenvironment.rst | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/components/engine/docs/sources/contributing/devenvironment.rst b/components/engine/docs/sources/contributing/devenvironment.rst index 6675173584..cab4c71afb 100644 --- a/components/engine/docs/sources/contributing/devenvironment.rst +++ b/components/engine/docs/sources/contributing/devenvironment.rst @@ -24,7 +24,17 @@ a working, up-to-date docker installation, then continue to the next step. -Step 2: Check out the Source +Step 2: Install tools used for this tutorial +-------------------------------------------- + +Install ``git``; honest, it's very good. You can use other ways to get the Docker +source, but they're not anywhere near as easy. + +Install ``make``. This tutorial uses our base Makefile to kick off the docker +containers in a repeatable and consistent way. Again, you can do it in other ways +but you need to do more work. + +Step 3: Check out the Source ---------------------------- .. code-block:: bash @@ -35,7 +45,7 @@ Step 2: Check out the Source To checkout a different revision just use ``git checkout`` with the name of branch or revision number. -Step 3: Build the Environment +Step 4: Build the Environment ----------------------------- This following command will build a development environment using the Dockerfile in the current directory. Essentially, it will install all the build and runtime dependencies necessary to build and test Docker. This command will take some time to complete when you first execute it. @@ -48,7 +58,7 @@ If the build is successful, congratulations! You have produced a clean build of docker, neatly encapsulated in a standard build environment. -Step 4: Build the Docker Binary +Step 5: Build the Docker Binary ------------------------------- To create the Docker binary, run this command: