FIX PHP YAML extension #1798 (#1888)

* FIX PHP YAML extension #1798
* changed parameter name
This commit is contained in:
Michael Radionov 2018-11-22 19:24:50 +05:00 committed by Shao Yu-Lung (Allen)
parent 5c41a4f3e9
commit cc81e57206
3 changed files with 3 additions and 3 deletions

View File

@ -1607,7 +1607,7 @@ YAML PHP extension allows you to easily parse and create YAML structured data. I
1 - Open the `.env` file
<br>
2 - Search for the `INSTALL_YAML` argument under the PHP-FPM container
2 - Search for the `PHP_FPM_INSTALL_YAML` argument under the PHP-FPM container
<br>
3 - Set it to `true`
<br>

View File

@ -156,7 +156,7 @@ services:
- INSTALL_CALENDAR=${PHP_FPM_INSTALL_CALENDAR}
- INSTALL_FAKETIME=${PHP_FPM_INSTALL_FAKETIME}
- INSTALL_IONCUBE=${PHP_FPM_INSTALL_IONCUBE}
- INSTALL_YAML=${INSTALL_YAML}
- INSTALL_YAML=${PHP_FPM_INSTALL_YAML}
volumes:
- ./php-fpm/php${PHP_VERSION}.ini:/usr/local/etc/php/php.ini
- ${APP_CODE_PATH_HOST}:${APP_CODE_PATH_CONTAINER}

View File

@ -162,7 +162,7 @@ PHP_FPM_INSTALL_CALENDAR=false
PHP_FPM_INSTALL_FAKETIME=false
PHP_FPM_INSTALL_IONCUBE=false
PHP_FPM_FAKETIME=-0
INSTALL_YAML=false
PHP_FPM_INSTALL_YAML=false
### PHP_WORKER ############################################