From 9716c1b3327ba37301d23e09c36e81281132c9a2 Mon Sep 17 00:00:00 2001 From: Gabriel Nicolas Avellaneda Date: Tue, 13 Jun 2017 20:47:56 +0200 Subject: [PATCH] Updates for latest docker machine release (#3552) --- machine/install-machine.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/machine/install-machine.md b/machine/install-machine.md index 496d353915..5153fc74da 100644 --- a/machine/install-machine.md +++ b/machine/install-machine.md @@ -25,24 +25,24 @@ docker/machine release page 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 docker/machine release page directly. @@ -50,7 +50,7 @@ docker/machine release page on GitHub. 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