Merge pull request #112 from srid/devenv

instructions to compile docker
Upstream-commit: ddf4c79977c77f56a0bf1c5ca8350eed1a619a4e
Component: engine
This commit is contained in:
Solomon Hykes
2013-03-20 00:08:54 -07:00

View File

@ -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?