Added option to install the php calendar extension in php-fpm (#1672)
* Added option to install the php calendar extension in php-fpm * Added section about installing php calendar extension in php-fpm
This commit is contained in:
parent
20b0181b6d
commit
4ce25e95b4
|
@ -1456,6 +1456,19 @@ e) set it to `true`
|
|||
|
||||
|
||||
|
||||
<a name="Install php calendar extension"></a>
|
||||
## Install php calendar extension
|
||||
|
||||
1 - Open the `.env` file
|
||||
<br>
|
||||
2 - Search for the `PHP_FPM_INSTALL_CALENDAR` argument under the PHP-FPM container
|
||||
<br>
|
||||
3 - Set it to `true`
|
||||
<br>
|
||||
4 - Re-build the containers `docker-compose build php-fpm`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<br>
|
||||
|
|
|
@ -143,6 +143,7 @@ services:
|
|||
- INSTALL_SWOOLE=${PHP_FPM_INSTALL_SWOOLE}
|
||||
- INSTALL_IMAGE_OPTIMIZERS=${PHP_FPM_INSTALL_IMAGE_OPTIMIZERS}
|
||||
- INSTALL_IMAGEMAGICK=${PHP_FPM_INSTALL_IMAGEMAGICK}
|
||||
- INSTALL_CALENDAR=${PHP_FPM_INSTALL_CALENDAR}
|
||||
volumes:
|
||||
- ./php-fpm/php${PHP_VERSION}.ini:/usr/local/etc/php/php.ini
|
||||
- ${APP_CODE_PATH_HOST}:${APP_CODE_PATH_CONTAINER}
|
||||
|
|
|
@ -148,6 +148,7 @@ PHP_FPM_INSTALL_LDAP=false
|
|||
PHP_FPM_INSTALL_SWOOLE=false
|
||||
PHP_FPM_INSTALL_PG_CLIENT=false
|
||||
PHP_FPM_INSTALL_PCNTL=false
|
||||
PHP_FPM_INSTALL_CALENDAR=false
|
||||
|
||||
### PHP_WORKER ############################################
|
||||
|
||||
|
|
|
@ -469,6 +469,19 @@ RUN if [ ${INSTALL_IMAP} = true ]; then \
|
|||
docker-php-ext-install imap \
|
||||
;fi
|
||||
|
||||
###########################################################################
|
||||
# Calendar:
|
||||
###########################################################################
|
||||
|
||||
USER root
|
||||
|
||||
ARG INSTALL_CALENDAR=false
|
||||
|
||||
RUN if [ ${INSTALL_CALENDAR} = true ]; then \
|
||||
docker-php-ext-configure calendar && \
|
||||
docker-php-ext-install calendar \
|
||||
;fi
|
||||
|
||||
###########################################################################
|
||||
# Check PHP version:
|
||||
###########################################################################
|
||||
|
|
Loading…
Reference in New Issue