mirror of https://github.com/docker/docs.git
Update install.md
In zsh you can't use command line variables in url. By adding double quotation the install command will work with both zsh and bash.
This commit is contained in:
parent
6602877fee
commit
e93b988c87
|
@ -112,7 +112,7 @@ by step instructions are also included below.
|
|||
1. Run this command to download the latest version of Docker Compose:
|
||||
|
||||
```bash
|
||||
sudo curl -L https://github.com/docker/compose/releases/download/{{site.compose_version}}/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
|
||||
sudo curl -L "https://github.com/docker/compose/releases/download/{{site.compose_version}}/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
|
||||
```
|
||||
|
||||
> Use the latest Compose release number in the download command.
|
||||
|
|
Loading…
Reference in New Issue