From 4389574aff5abc1dd49313ca5217f81210568ed9 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Tue, 19 Mar 2013 20:17:32 -0700 Subject: [PATCH] instructions to compile docker --- README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 490608cadc..f51db08ec6 100644 --- a/README.md +++ b/README.md @@ -224,9 +224,30 @@ Golang has a great testing suite built in: use it! Take a look at existing tests Setting up a dev environment ---------------------------- -Coming soon! +Instructions that is verified to work on Ubuntu 12.10, +``` +sudo apt-get -y install lxc wget bsdtar curl libsqlite3-dev golang +export GOPATH=~/go/ +export PATH=$GOPATH/bin:$PATH + +mkdir -p $GOPATH/src/github.com/dotcloud +cd $GOPATH/src/github.com/dotcloud +git clone git@github.com:dotcloud/docker.git +cd docker + +go get -v github.com/dotcloud/docker/... +go install -v github.com/dotcloud/docker/... +``` + +Then run the docker daemon, + +``` +sudo $GOPATH/bin/docker -d +``` + +Run the `go install` command (above) to recompile docker. What is a Standard Container?