Fix docs when installing on Compose on Ubuntu. (#4399)

This commit is contained in:
Seth 2017-08-28 13:24:03 -05:00 committed by Misty Stanley-Jones
parent 201444969e
commit 503299c466
1 changed files with 4 additions and 2 deletions

View File

@ -107,7 +107,8 @@ by step instructions are also included below.
`$dockerComposeVersion` with the specific version of Compose you want to use:
```bash
sudo curl -L
sudo -i
curl -L
https://github.com/docker/compose/releases/download/$dockerComposeVersion/docker-compose-`uname
-s`-`uname -m` -o /usr/local/bin/docker-compose
```
@ -116,7 +117,8 @@ https://github.com/docker/compose/releases/download/$dockerComposeVersion/docker
is:
```bash
sudo curl -L https://github.com/docker/compose/releases/download/{{composeversion}}/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo -i
curl -L https://github.com/docker/compose/releases/download/{{composeversion}}/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
```
> Use the latest Compose release number in the download command.