|
1 | 1 | # docker-machine-driver-linode |
2 | 2 |
|
| 3 | +[](https://godoc.org/github.com/linode/docker-machine-driver-linode) |
| 4 | +[](https://goreportcard.com/report/github.com/linode/docker-machine-driver-linode) |
| 5 | +[](https://circleci.com/gh/linode/docker-machine-driver-linode) |
| 6 | +[](https://github.com/linode/docker-machine-driver-linode/releases/) |
| 7 | + |
3 | 8 | Linode Driver Plugin for docker-machine. |
4 | 9 |
|
5 | 10 | ## Install |
6 | 11 |
|
7 | | -First, docker-machine is required, documentation for how to install `docker-machine` |
8 | | -[is available here](https://docs.docker.com/machine/install-machine/). |
| 12 | +`docker-machine` is required, [see the installation documentation](https://docs.docker.com/machine/install-machine/). |
| 13 | + |
| 14 | +Then, install the latest release for your environment from the [releases list](https://github.com/linode/docker-machine-driver-linode/releases). |
| 15 | + |
| 16 | +### Installing from source |
| 17 | + |
| 18 | +If you would rather build from source, you will need to have a working `go` 1.11+ environment, |
| 19 | + |
| 20 | +```bash |
| 21 | +eval $(go env) |
| 22 | +export PATH="$PATH:$GOPATH/bin" |
| 23 | +``` |
9 | 24 |
|
10 | | -Or, you can install `docker-machine` from source by running: |
| 25 | +You can then install `docker-machine` from source by running: |
11 | 26 |
|
12 | 27 | ```bash |
13 | 28 | go get github.com/docker/machine |
14 | 29 | cd $GOPATH/src/github.com/docker/machine |
15 | 30 | make build |
16 | 31 | ``` |
17 | 32 |
|
18 | | -Then, install `docker-machine-driver-linode` driver in the `$GOPATH` and add `$GOPATH/bin` to the `$PATH` environment variable. |
| 33 | +And then compile the `docker-machine-driver-linode` driver: |
19 | 34 |
|
20 | 35 | ```bash |
21 | 36 | go get github.com/linode/docker-machine-driver-linode |
|
0 commit comments