diff --git a/machine/install-machine.md b/machine/install-machine.md index 45f1efe65c..a84c21c90f 100644 --- a/machine/install-machine.md +++ b/machine/install-machine.md @@ -29,13 +29,13 @@ If you want only Docker Machine, you can install the Machine binaries directly b If you are running OS X or Linux: - $ curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine && \ + $ curl -L https://github.com/docker/machine/releases/download/v0.8.2/docker-machine-`uname -s`-`uname -m` >/usr/local/bin/docker-machine && \ chmod +x /usr/local/bin/docker-machine If you are running Windows with git bash $ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \ - curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \ + curl -L https://github.com/docker/machine/releases/download/v0.8.2/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. @@ -43,7 +43,7 @@ If you want only Docker Machine, you can install the Machine binaries directly b 3. Check the installation by displaying the Machine version: $ docker-machine version - docker-machine version 0.7.0, build 61388e9 + docker-machine version 0.8.2, build e18a919 ## Installing bash completion scripts