Merge pull request #2215 from stefnats/gearman

Implement Gearman Message broker & PHP Extension
This commit is contained in:
Shao Yu-Lung (Allen)
2019-10-07 17:08:29 +08:00
committed by GitHub
8 changed files with 134 additions and 1 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 \