mirror of https://github.com/docker/docs.git
Update docker-machine installation for v0.12.1 (#3843)
This commit is contained in:
parent
56de91e44a
commit
f16909378e
|
@ -25,14 +25,14 @@ docker/machine release page</a> on GitHub.
|
||||||
If you are running on **macOS**:
|
If you are running on **macOS**:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ curl -L https://github.com/docker/machine/releases/download/v0.12.0/docker-machine-`uname -s`-`uname -m` >/usr/local/bin/docker-machine && \
|
$ curl -L https://github.com/docker/machine/releases/download/v0.12.1/docker-machine-`uname -s`-`uname -m` >/usr/local/bin/docker-machine && \
|
||||||
chmod +x /usr/local/bin/docker-machine
|
chmod +x /usr/local/bin/docker-machine
|
||||||
```
|
```
|
||||||
|
|
||||||
If you are running on **Linux**:
|
If you are running on **Linux**:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ curl -L https://github.com/docker/machine/releases/download/v0.12.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine &&
|
$ curl -L https://github.com/docker/machine/releases/download/v0.12.1/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine &&
|
||||||
chmod +x /tmp/docker-machine &&
|
chmod +x /tmp/docker-machine &&
|
||||||
sudo cp /tmp/docker-machine /usr/local/bin/docker-machine
|
sudo cp /tmp/docker-machine /usr/local/bin/docker-machine
|
||||||
```
|
```
|
||||||
|
@ -41,7 +41,7 @@ docker/machine release page</a> on GitHub.
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
|
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
|
||||||
curl -L https://github.com/docker/machine/releases/download/v0.12.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \
|
curl -L https://github.com/docker/machine/releases/download/v0.12.1/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \
|
||||||
chmod +x "$HOME/bin/docker-machine.exe"
|
chmod +x "$HOME/bin/docker-machine.exe"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ chmod +x "$HOME/bin/docker-machine.exe"
|
||||||
3. Check the installation by displaying the Machine version:
|
3. Check the installation by displaying the Machine version:
|
||||||
|
|
||||||
$ docker-machine version
|
$ docker-machine version
|
||||||
docker-machine version 0.12.0, build 45c69ad
|
docker-machine version 0.12.1, build c8b17e8
|
||||||
|
|
||||||
## Installing bash completion scripts
|
## Installing bash completion scripts
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue