mirror of https://github.com/docker/docs.git
Add pip dependencies to compose doc for alpine (#8554)
* Add pip dependencies to compose doc for alpine Signed-off-by: Ulysses Souza <ulysses.souza@docker.com> * Minor edit
This commit is contained in:
parent
c98e62f0ec
commit
9ff6e4f4f6
|
@ -124,6 +124,10 @@ repository release page on GitHub](https://github.com/docker/compose/releases){:
|
|||
target="_blank" class="_"}. Follow the instructions from the link, which involve
|
||||
running the `curl` command in your terminal to download the binaries. These step-by-step instructions are also included below.
|
||||
|
||||
> For `alpine`, the following dependency packages are needed:
|
||||
> `py-pip`, `python-dev`, `libffi-dev`, `openssl-dev`, `gcc`, `libc-dev`, and `make`.
|
||||
{: .important}
|
||||
|
||||
1. Run this command to download the current stable release of Docker Compose:
|
||||
|
||||
```bash
|
||||
|
@ -170,6 +174,10 @@ sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
|
|||
|
||||
#### Install using pip
|
||||
|
||||
> For `alpine`, the following dependency packages are needed:
|
||||
> `py-pip`, `python-dev`, `libffi-dev`, `openssl-dev`, `gcc`, `libc-dev`, and `make`.
|
||||
{: .important}
|
||||
|
||||
Compose can be installed from
|
||||
[pypi](https://pypi.python.org/pypi/docker-compose) using `pip`. If you install
|
||||
using `pip`, we recommend that you use a
|
||||
|
|
Loading…
Reference in New Issue