From 83d48049ac613187cae575bc942982fe25af8e33 Mon Sep 17 00:00:00 2001 From: Nathan LeClaire Date: Wed, 22 Apr 2015 15:51:19 -0700 Subject: [PATCH] Fix Windows binary path being broken and add -L to remaining commands Signed-off-by: Nathan LeClaire --- docs/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.md b/docs/index.md index 9f3328148e..e64ac614c5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -74,7 +74,7 @@ In order to run Docker commands on your machines without having to use SSH, make sure to install the Docker client as well, e.g.: ``` -$ curl https://get.docker.com/builds/Darwin/x86_64/docker-latest > /usr/local/bin/docker +$ curl -L https://get.docker.com/builds/Darwin/x86_64/docker-latest > /usr/local/bin/docker ``` ### Windows @@ -92,13 +92,13 @@ installation. If you are on a 32-bit installation, please substitute "i386" for First, install the Docker client binary: ``` -curl https://get.docker.com/builds/Windows/x86_64/docker-latest > /bin/docker +$ curl -L https://get.docker.com/builds/Windows/x86_64/docker-latest.exe > /bin/docker ``` Next, install the Docker Machine binary: ``` -curl https://github.com/docker/machine/releases/docker-machine_windows-amd64.exe > /bin/docker-machine +$ curl -L https://github.com/docker/machine/releases/download/v0.2.0/docker-machine_windows-amd64.exe > /bin/docker-machine ``` Now running `docker-machine` should work.