Install socket extension for php-fpm (#1923)

In some case for pushing into queue you need use constant from sockets extension
This commit is contained in:
Pavel 2019-01-08 12:35:22 +05:00 committed by Shao Yu-Lung (Allen)
parent 163eb1f73a
commit e07c128063

View File

@ -224,7 +224,9 @@ RUN if [ ${INSTALL_AMQP} = true ]; then \
apt-get install librabbitmq-dev -y && \
# Install the amqp extension
pecl install amqp && \
docker-php-ext-enable amqp \
docker-php-ext-enable amqp && \
# Install the sockets extension
docker-php-ext-install sockets \
;fi
###########################################################################