Implement Gearman Message broker & PHP Extension

This commit is contained in:
Stefan Neuhaus
2019-07-25 12:03:21 +02:00
parent 196f145ff5
commit 044261b06f
8 changed files with 135 additions and 2 deletions

View File

@ -85,6 +85,13 @@ RUN if [ ${INSTALL_AMQP} = true ]; then \
docker-php-ext-install sockets \
;fi
# Install Gearman:
ARG INSTALL_GEARMAN=false
RUN if [ ${INSTALL_GEARMAN} = true ]; then \
docker-php-ext-install gearman \
;fi
# Install Cassandra drivers:
ARG INSTALL_CASSANDRA=false
RUN if [ ${INSTALL_CASSANDRA} = true ]; then \