mirror of https://github.com/docker/docs.git
Merge pull request #2678 from juliengarcia/master
Update docker-machine version in installation docs
This commit is contained in:
commit
f86274d6ed
|
@ -32,18 +32,18 @@ instructions in the next section.
|
||||||
|
|
||||||
Linux:
|
Linux:
|
||||||
|
|
||||||
$ curl -L https://github.com/docker/machine/releases/download/v0.5.3/docker-machine_linux-amd64 >/usr/local/bin/docker-machine && \
|
$ curl -L https://github.com/docker/machine/releases/download/v0.5.4/docker-machine_linux-amd64 >/usr/local/bin/docker-machine && \
|
||||||
chmod +x /usr/local/bin/docker-machine
|
chmod +x /usr/local/bin/docker-machine
|
||||||
|
|
||||||
OSX:
|
OSX:
|
||||||
|
|
||||||
$ curl -L https://github.com/docker/machine/releases/download/v0.5.3/docker-machine_darwin-amd64 >/usr/local/bin/docker-machine && \
|
$ curl -L https://github.com/docker/machine/releases/download/v0.5.4/docker-machine_darwin-amd64 >/usr/local/bin/docker-machine && \
|
||||||
chmod +x /usr/local/bin/docker-machine
|
chmod +x /usr/local/bin/docker-machine
|
||||||
|
|
||||||
Windows (using Git Bash):
|
Windows (using Git Bash):
|
||||||
|
|
||||||
$ 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.5.3/docker-machine_windows-amd64.exe > "$HOME/bin/docker-machine.exe" && \
|
curl -L https://github.com/docker/machine/releases/download/v0.5.4/docker-machine_windows-amd64.exe > "$HOME/bin/docker-machine.exe" && \
|
||||||
chmod +x "$HOME/bin/docker-machine.exe"
|
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:
|
||||||
|
|
Loading…
Reference in New Issue