Commit a30bf832 authored by Mahmoud Zalt's avatar Mahmoud Zalt Committed by GitHub

Merge pull request #228 from lialosiu/master

add options INSTALL_ZIP_ARCHIVE to php-fpm
parents 82cbad75 1fdf8009
......@@ -26,6 +26,7 @@ services:
args:
- INSTALL_MONGO=false
- INSTALL_XDEBUG=false
- INSTALL_ZIP_ARCHIVE=false
dockerfile: Dockerfile-70
volumes_from:
- volumes_source
......
......@@ -35,6 +35,7 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
#
# - INSTALL_XDEBUG= false
# - INSTALL_MONGO= false
# - INSTALL_ZIP_ARCHIVE= false
#
#####################################
......@@ -60,6 +61,18 @@ RUN if [ ${INSTALL_MONGO} = true ]; then \
pecl install mongodb \
;fi
#####################################
# ZipArchive:
#####################################
ARG INSTALL_ZIP_ARCHIVE=true
ENV INSTALL_ZIP_ARCHIVE ${INSTALL_ZIP_ARCHIVE}
RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
# Install the zip extention
pecl install zip \
;fi
#
#--------------------------------------------------------------------------
# Final Touch
......
......@@ -35,6 +35,7 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
#
# - INSTALL_XDEBUG= false
# - INSTALL_MONGO= false
# - INSTALL_ZIP_ARCHIVE= false
#
#####################################
......@@ -60,6 +61,18 @@ RUN if [ ${INSTALL_MONGO} = true ]; then \
pecl install mongodb \
;fi
#####################################
# ZipArchive:
#####################################
ARG INSTALL_ZIP_ARCHIVE=true
ENV INSTALL_ZIP_ARCHIVE ${INSTALL_ZIP_ARCHIVE}
RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
# Install the zip extention
pecl install zip \
;fi
#
#--------------------------------------------------------------------------
# Final Touch
......
......@@ -2,6 +2,7 @@ date.timezone=UTC
display_errors=Off
log_errors=On
extension=mongodb.so
extension=zip.so
; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment