Kaynağa Gözat

Install socket extension for php-fpm (#1923)

In some case for pushing into queue you need use constant from sockets extension
Pavel 6 yıl önce
ebeveyn
işleme
e07c128063
1 değiştirilmiş dosya ile 3 ekleme ve 1 silme
  1. 3 1
      php-fpm/Dockerfile

+ 3 - 1
php-fpm/Dockerfile

@@ -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
 
 ###########################################################################