Skip to content

Commit

Permalink
Updates for latest docker machine release (#3552)
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielNicolasAvellaneda authored and Misty Stanley-Jones committed Jun 13, 2017
1 parent af911f3 commit 9716c1b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions machine/install-machine.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,32 +25,32 @@ docker/machine release page</a> on GitHub.
If you are running on **macOS**:

```console
$ curl -L https://github.com/docker/machine/releases/download/v0.10.0/docker-machine-`uname -s`-`uname -m` >/usr/local/bin/docker-machine && \
chmod +x /usr/local/bin/docker-machine
$ curl -L https://github.com/docker/machine/releases/download/v0.12.0/docker-machine-`uname -s`-`uname -m` >/usr/local/bin/docker-machine && \
chmod +x /usr/local/bin/docker-machine
```

If you are running on **Linux**:

```console
$ curl -L https://github.com/docker/machine/releases/download/v0.10.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine &&
chmod +x /tmp/docker-machine &&
sudo cp /tmp/docker-machine /usr/local/bin/docker-machine
$ curl -L https://github.com/docker/machine/releases/download/v0.12.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine &&
chmod +x /tmp/docker-machine &&
sudo cp /tmp/docker-machine /usr/local/bin/docker-machine
```

If you are running with **Windows** with git bash:

```console
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
curl -L https://github.com/docker/machine/releases/download/v0.10.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \
chmod +x "$HOME/bin/docker-machine.exe"
curl -L https://github.com/docker/machine/releases/download/v0.12.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \
chmod +x "$HOME/bin/docker-machine.exe"
```

Otherwise, download one of the releases from the <a href="https://github.com/docker/machine/releases/" target="_blank"> docker/machine release page</a> directly.

3. Check the installation by displaying the Machine version:

$ docker-machine version
docker-machine version 0.10.0, build 76ed2a6
docker-machine version 0.12.0, build 45c69ad

## Installing bash completion scripts

Expand Down

0 comments on commit 9716c1b

Please sign in to comment.