mirror of https://github.com/docker/docs.git
Fix installation notes for 0.5.3
Signed-off-by: David Gageot <david@gageot.net>
This commit is contained in:
parent
4d39a66899
commit
9d4ba57ce2
|
@ -28,29 +28,23 @@ instructions in the next section.
|
||||||
1. Install <a href="https://docs.docker.com/installation/"
|
1. Install <a href="https://docs.docker.com/installation/"
|
||||||
target="_blank">the Docker binary</a>.
|
target="_blank">the Docker binary</a>.
|
||||||
|
|
||||||
2. Download the archive containing the Docker Machine binary and extract it
|
2. Download the Docker Machine binary and extract it to your PATH.
|
||||||
to your PATH.
|
|
||||||
|
|
||||||
Linux:
|
Linux:
|
||||||
|
|
||||||
$ curl -L https://github.com/docker/machine/releases/download/v0.5.3/docker-machine_linux-amd64.zip >machine.zip && \
|
$ curl -L https://github.com/docker/machine/releases/download/v0.5.3/docker-machine_linux-amd64 >/usr/local/bin/docker-machine && \
|
||||||
unzip machine.zip && \
|
chmod +x /usr/local/bin/docker-machine
|
||||||
rm machine.zip && \
|
|
||||||
mv docker-machine /usr/local/bin
|
|
||||||
|
|
||||||
OSX:
|
OSX:
|
||||||
|
|
||||||
$ curl -L https://github.com/docker/machine/releases/download/v0.5.3/docker-machine_darwin-amd64.zip >machine.zip && \
|
$ curl -L https://github.com/docker/machine/releases/download/v0.5.3/docker-machine_darwin-amd64 >/usr/local/bin/docker-machine && \
|
||||||
unzip machine.zip && \
|
chmod +x /usr/local/bin/docker-machine
|
||||||
rm machine.zip && \
|
|
||||||
mv docker-machine /usr/local/bin
|
|
||||||
|
|
||||||
Windows (using Git Bash):
|
Windows (using Git Bash):
|
||||||
|
|
||||||
$ curl -L https://github.com/docker/machine/releases/download/v0.5.3/docker-machine_windows-amd64.zip >machine.zip && \
|
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
|
||||||
unzip machine.zip && \
|
curl -L https://github.com/docker/machine/releases/download/v0.5.3/docker-machine_windows-amd64.exe > "$HOME/bin/docker-machine.exe" && \
|
||||||
rm machine.zip && \
|
chmod +x "$HOME/bin/docker-machine.exe"
|
||||||
mv docker-machine /usr/local/bin
|
|
||||||
|
|
||||||
3. Check the installation by displaying the Machine version:
|
3. Check the installation by displaying the Machine version:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue