diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index be4f380e..80e787cb 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -1607,7 +1607,7 @@ YAML PHP extension allows you to easily parse and create YAML structured data. I 1 - Open the `.env` file
-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
3 - Set it to `true`
diff --git a/docker-compose.yml b/docker-compose.yml index 83693703..60e9b267 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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} diff --git a/env-example b/env-example index a0d57065..67f874f4 100644 --- a/env-example +++ b/env-example @@ -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 ############################################