Add support for pgclient to workspace & php-fpm
This commit is contained in:
		@@ -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:
 | 
			
		||||
#####################################
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user