Merge pull request #2749 from nalatreb/change-doc
Change PHP extension install section in the documentation
This commit is contained in:
commit
f2a8fecd33
|
@ -196,6 +196,7 @@ More [options](https://docs.docker.com/compose/reference/logs/)
|
||||||
|
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<a name="PHP"></a>
|
<a name="PHP"></a>
|
||||||
|
|
||||||
|
|
||||||
|
@ -206,11 +207,14 @@ More [options](https://docs.docker.com/compose/reference/logs/)
|
||||||
<a name="Install-PHP-Extensions"></a>
|
<a name="Install-PHP-Extensions"></a>
|
||||||
## Install PHP Extensions
|
## Install PHP Extensions
|
||||||
|
|
||||||
Before installing PHP extensions, you have to decide first whether you need `FPM` or `CLI`, because each of them has it's own different container, if you need it for both, you have to edit both containers.
|
You can set extensions to install in the .env file's corresponding section (`PHP_FPM`, `WORKSPACE`, `PHP_WORKER`),
|
||||||
|
just change the `false` to `true` at the desired extension's line.
|
||||||
|
After this you have to rebuild the container with the `--no-cache` option.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker build --no-cache {container-name}
|
||||||
|
```
|
||||||
|
|
||||||
The PHP-FPM extensions should be installed in `php-fpm/Dockerfile-XX`. *(replace XX with your default PHP version number)*.
|
|
||||||
<br>
|
|
||||||
The PHP-CLI extensions should be installed in `workspace/Dockerfile`.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -218,8 +222,10 @@ The PHP-CLI extensions should be installed in `workspace/Dockerfile`.
|
||||||
|
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<a name="Change-the-PHP-FPM-Version"></a>
|
<a name="Change-the-PHP-FPM-Version"></a>
|
||||||
## Change the (PHP-FPM) Version
|
## Change the (PHP-FPM) Version
|
||||||
|
|
||||||
By default the latest stable PHP version is configured to run.
|
By default the latest stable PHP version is configured to run.
|
||||||
|
|
||||||
>The PHP-FPM is responsible for serving your application code, you don't have to change the PHP-CLI version if you are planning to run your application on different PHP-FPM version.
|
>The PHP-FPM is responsible for serving your application code, you don't have to change the PHP-CLI version if you are planning to run your application on different PHP-FPM version.
|
||||||
|
|
Loading…
Reference in New Issue