Merge pull request #1562 from jgeiger/patch-1

Update install-machine.md to reference 0.3.1
This commit is contained in:
Nathan LeClaire 2015-07-27 11:19:32 -07:00
commit ef9acc98b6
1 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,7 @@ weight=3
Docker Machine is supported on Windows, OS X, and Linux and is installable as
one standalone binary. The links to the binaries for the various platforms and
architectures are available at the [Github
Release](https://github.com/docker/machine/releases/tag/v0.3.0) page.
Release](https://github.com/docker/machine/releases/) page.
### OS X and Linux
@ -24,7 +24,7 @@ To install on OS X or Linux, download the proper binary to somewhere in your
most OS X machines these commands should suffice:
```
$ curl -L https://github.com/docker/machine/releases/download/v0.3.0/docker-machine_darwin-amd64 > /usr/local/bin/docker-machine
$ curl -L https://github.com/docker/machine/releases/download/v0.3.1/docker-machine_darwin-amd64 > /usr/local/bin/docker-machine
$ chmod +x /usr/local/bin/docker-machine
```
@ -34,7 +34,7 @@ Now you should be able to check the version with `docker-machine -v`:
```
$ docker-machine -v
machine version 0.3.0
machine version 0.3.1
```
In order to run Docker commands on your machines without having to use SSH, make
@ -66,12 +66,12 @@ $ curl -L https://get.docker.com/builds/Windows/x86_64/docker-latest.exe > /bin/
Next, install the Docker Machine binary:
```
$ curl -L https://github.com/docker/machine/releases/download/v0.3.0/docker-machine_windows-amd64.exe > /bin/docker-machine
$ curl -L https://github.com/docker/machine/releases/download/v0.3.1/docker-machine_windows-amd64.exe > /bin/docker-machine
```
Now running `docker-machine` should work.
```
$ docker-machine -v
machine version 0.3.0
```
machine version 0.3.1
```