Fix variable issues.

Also made the variables introduced with the psql client consistent
with the existing ones. Fixes #1208
This commit is contained in:
Thorvald Falkenburg
2017-10-25 11:40:47 +02:00
parent c05c675408
commit f4ede08b9c
8 changed files with 22 additions and 15 deletions

View File

@ -65,8 +65,8 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \
# pgsql client
#####################################
ARG PHP_FPM_PG_CLIENT=false
RUN if [ ${PHP_FPM_PG_CLIENT} = true ]; then \
ARG INSTALL_PG_CLIENT=false
RUN if [ ${INSTALL_PG_CLIENT} = true ]; then \
# Install the pgsql client
apt-get update -yqq && \
apt-get install -y postgresql-client \