mirror of https://github.com/docker/docs.git
Merge pull request #1953 from bookerzzz/master
Explain how to prepare a Go 1.5 development environment
This commit is contained in:
commit
1bb6cae798
|
@ -14,29 +14,40 @@ Docker does things, you'll feel right at home.
|
||||||
Otherwise, please read [Docker's contributions
|
Otherwise, please read [Docker's contributions
|
||||||
guidelines](https://github.com/docker/docker/blob/master/CONTRIBUTING.md).
|
guidelines](https://github.com/docker/docker/blob/master/CONTRIBUTING.md).
|
||||||
|
|
||||||
# Building using docker
|
# Building
|
||||||
|
|
||||||
The requirements to build Machine are:
|
The requirements to build Machine are:
|
||||||
|
|
||||||
1. A running instance of Docker
|
1. A running instance of Docker or a Golang 1.5 development environment
|
||||||
2. The `bash` shell
|
2. The `bash` shell
|
||||||
3. [Make](https://www.gnu.org/software/make/)
|
3. [Make](https://www.gnu.org/software/make/)
|
||||||
|
|
||||||
Call `export USE_CONTAINER=true` to instruct the build system to use containers to build.
|
## Build using Docker containers
|
||||||
|
|
||||||
# Alternative: build using go only
|
To build the `docker-machine` binary using containers, simply run:
|
||||||
|
|
||||||
Alternatively, you can build without docker, using only golang.
|
$ export USE_CONTAINER=true
|
||||||
|
$ make build
|
||||||
|
|
||||||
[Install and setup go](https://golang.org/doc/install), then clone the machine repository inside your gopath.
|
## Local Go 1.5 development environment
|
||||||
|
|
||||||
## Building
|
Make sure the source code directory is under a correct directory structure to use Go 1.5 vendoring;
|
||||||
|
example of cloning and preparing the correct environment `GOPATH`:
|
||||||
|
```
|
||||||
|
mkdir docker-machine
|
||||||
|
cd docker-machine
|
||||||
|
export GOPATH="$PWD"
|
||||||
|
go get github.com/docker/machine
|
||||||
|
cd docker-machine/src/github.com/docker/machine
|
||||||
|
```
|
||||||
|
|
||||||
To build the docker-machine binary, simply run:
|
At this point, simply run:
|
||||||
|
|
||||||
$ make build
|
$ make build
|
||||||
|
|
||||||
From the Machine repository's root. You will now have a `bin/docker-machine`.
|
## Built binary
|
||||||
|
|
||||||
|
After the build is complete a `bin/docker-machine` binary will be created.
|
||||||
|
|
||||||
You may call:
|
You may call:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue