Add support for pgclient to workspace & php-fpm

This commit is contained in:
Geraint Dong
2017-10-18 10:04:23 +07:00
parent ca9c07eb76
commit ee03bb607f
7 changed files with 65 additions and 0 deletions

View File

@ -61,6 +61,17 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \
docker-php-ext-install pgsql \
;fi
#####################################
# pgsql client
#####################################
ARG PHP_FPM_PG_CLIENT=true
RUN if [ ${PHP_FPM_PG_CLIENT} = true ]; then \
# Install the pgsql clint
apt-get update -yqq && \
apt-get install -y postgresql-client \
;fi
#####################################
# xDebug:
#####################################

View File

@ -61,6 +61,17 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \
docker-php-ext-install pgsql \
;fi
#####################################
# pgsql client
#####################################
ARG PHP_FPM_PG_CLIENT=false
RUN if [ ${PHP_FPM_PG_CLIENT} = true ]; then \
# Install the pgsql client
apt-get update -yqq && \
apt-get install -y postgresql-client \
;fi
#####################################
# xDebug:
#####################################

View File

@ -61,6 +61,17 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \
docker-php-ext-install pgsql \
;fi
#####################################
# pgsql client
#####################################
ARG PHP_FPM_PG_CLIENT=false
RUN if [ ${PHP_FPM_PG_CLIENT} = true ]; then \
# Install the pgsql client
apt-get update -yqq && \
apt-get install -y postgresql-client \
;fi
#####################################
# xDebug:
#####################################