Move example of symbolic link closer to related text (#14228)

* Move example of symbolic link closer to related text

This is to co-locate the text explaining why a symbolic link might be required with the example of the symbolic link creation. This will make it more clear that the symbolic link example is related to the note immediately above.

* Insert line break prior to example

* Fix indentation of quote block

It now matches the indentation of the instructions code blocks and other quote blocks.
This commit is contained in:
jrudel 2022-02-11 10:01:16 -04:00 committed by GitHub
parent 8462ac28ee
commit abddcbce76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 10 deletions

View File

@ -149,16 +149,15 @@ also included below.
$ sudo chmod +x /usr/local/bin/docker-compose
```
> **Note**:
>
> If the command `docker-compose` fails after installation, check your path.
> You can also create a symbolic link to `/usr/bin` or any other directory in your path.
For example:
```console
$ sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
```
> **Note**:
>
> If the command `docker-compose` fails after installation, check your path.
> You can also create a symbolic link to `/usr/bin` or any other directory in your path.
>
> For example:
> ```console
> $ sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
> ```
3. Optionally, install [command completion](completion.md) for the
`bash` and `zsh` shell.