Merge pull request #1199 from zuohuadong/master
add postgres for php-fpm
This commit is contained in:
commit
b3922995e1
|
@ -76,6 +76,7 @@ PHP_FPM_INSTALL_OPCACHE=false
|
|||
PHP_FPM_INSTALL_EXIF=false
|
||||
PHP_FPM_INSTALL_AEROSPIKE=false
|
||||
PHP_FPM_INSTALL_MYSQLI=false
|
||||
PHP_FPM_INSTALL_POSTGRES=false
|
||||
PHP_FPM_INSTALL_TOKENIZER=false
|
||||
PHP_FPM_INSTALL_INTL=false
|
||||
PHP_FPM_INSTALL_GHOSTSCRIPT=false
|
||||
|
|
|
@ -207,6 +207,15 @@ RUN if [ ${INSTALL_MYSQLI} = true ]; then \
|
|||
docker-php-ext-install mysqli \
|
||||
;fi
|
||||
|
||||
#####################################
|
||||
# postgres Modifications:
|
||||
#####################################
|
||||
|
||||
ARG INSTALL_POSTGRES=false
|
||||
RUN if [ ${INSTALL_POSTGRES} = true ]; then \
|
||||
docker-php-ext-install pgsql \
|
||||
;fi
|
||||
|
||||
#####################################
|
||||
# Tokenizer Modifications:
|
||||
#####################################
|
||||
|
|
|
@ -216,6 +216,15 @@ RUN if [ ${INSTALL_MYSQLI} = true ]; then \
|
|||
docker-php-ext-install mysqli \
|
||||
;fi
|
||||
|
||||
#####################################
|
||||
# postgres Modifications:
|
||||
#####################################
|
||||
|
||||
ARG INSTALL_POSTGRES=false
|
||||
RUN if [ ${INSTALL_POSTGRES} = true ]; then \
|
||||
docker-php-ext-install pgsql \
|
||||
;fi
|
||||
|
||||
#####################################
|
||||
# Tokenizer Modifications:
|
||||
#####################################
|
||||
|
|
Loading…
Reference in New Issue