File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ services:
4545 context : ./php-fpm
4646 args :
4747 - INSTALL_XDEBUG=false
48+ - INSTALL_SOAP=false
4849 - INSTALL_MONGO=false
4950 - INSTALL_ZIP_ARCHIVE=false
5051 - INSTALL_MEMCACHED=false
Original file line number Diff line number Diff line change @@ -36,6 +36,18 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
3636# - INSTALL_ZIP_ARCHIVE=true
3737#
3838
39+ #####################################
40+ # SOAP:
41+ #####################################
42+
43+ ARG INSTALL_SOAP=false
44+ RUN if [ ${INSTALL_SOAP} = true ]; then \
45+ # Install the soap extension
46+ apt-get -y update && \
47+ apt-get -y install libxml2-dev && \
48+ docker-php-ext-install soap && \
49+ ;fi
50+
3951#####################################
4052# xDebug:
4153#####################################
Original file line number Diff line number Diff line change @@ -37,6 +37,18 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
3737# - ...
3838#
3939
40+ #####################################
41+ # SOAP:
42+ #####################################
43+
44+ ARG INSTALL_SOAP=false
45+ RUN if [ ${INSTALL_SOAP} = true ]; then \
46+ # Install the soap extension
47+ apt-get -y update && \
48+ apt-get -y install libxml2-dev && \
49+ docker-php-ext-install soap \
50+ ;fi
51+
4052#####################################
4153# xDebug:
4254#####################################
You can’t perform that action at this time.
0 commit comments