Added support for AMQP extension in workspace and php-fpm containers.
This commit is contained in:
		@@ -133,6 +133,18 @@ RUN if [ ${INSTALL_MONGO} = true ]; then \
 | 
			
		||||
    docker-php-ext-enable mongodb \
 | 
			
		||||
;fi
 | 
			
		||||
 | 
			
		||||
#####################################
 | 
			
		||||
# AMQP:
 | 
			
		||||
#####################################
 | 
			
		||||
 | 
			
		||||
ARG INSTALL_AMQP=false
 | 
			
		||||
RUN if [ ${INSTALL_AMQP} = true ]; then \
 | 
			
		||||
    apt-get install librabbitmq-dev -y && \
 | 
			
		||||
    # Install the amqp extension
 | 
			
		||||
    pecl install amqp && \
 | 
			
		||||
    docker-php-ext-enable amqp \
 | 
			
		||||
;fi
 | 
			
		||||
 | 
			
		||||
#####################################
 | 
			
		||||
# ZipArchive:
 | 
			
		||||
#####################################
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user