Skip to content

Commit

Permalink
Revise Linux install command
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan LeClaire <[email protected]>
  • Loading branch information
nathanleclaire committed Jan 3, 2017
1 parent 59a1877 commit 7975180
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion script/release/github-release-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@ If you're a Mac or Windows user, the [Docker Toolbox](https://www.docker.com/doc

You can use the usual commands to install or upgrade:

On OS X or Linux
On OS X
```console
$ curl -L https://github.com/docker/machine/releases/download/{{VERSION}}/docker-machine-`uname -s`-`uname -m` >/usr/local/bin/docker-machine && \
chmod +x /usr/local/bin/docker-machine
```
On Linux
```console
$ curl -L https://github.com/docker/machine/releases/download/{{VERSION}}/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine &&
chmod +x /tmp/docker-machine &&
sudo cp /tmp/docker-machine /usr/local/bin/docker-machine
```
On Windows with git bash
```console
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
Expand Down

0 comments on commit 7975180

Please sign in to comment.