File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ services:
1818 - INSTALL_XDEBUG=${WORKSPACE_INSTALL_XDEBUG}
1919 - INSTALL_BLACKFIRE=${INSTALL_BLACKFIRE}
2020 - INSTALL_SOAP=${WORKSPACE_INSTALL_SOAP}
21+ - INSTALL_LDAP=${WORKSPACE_INSTALL_LDAP}
2122 - INSTALL_MONGO=${WORKSPACE_INSTALL_MONGO}
2223 - INSTALL_PHPREDIS=${WORKSPACE_INSTALL_PHPREDIS}
2324 - INSTALL_MSSQL=${WORKSPACE_INSTALL_MSSQL}
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ PHP_INTERPRETER=php-fpm
3030### WORKSPACE ##########################################################################################################
3131
3232WORKSPACE_INSTALL_XDEBUG=false
33+ WORKSPACE_INSTALL_LDAP=false
3334WORKSPACE_INSTALL_SOAP=false
3435WORKSPACE_INSTALL_MONGO=false
3536WORKSPACE_INSTALL_PHPREDIS=false
Original file line number Diff line number Diff line change @@ -69,6 +69,19 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \
6969 apt-get -y install libxml2-dev php7.0-soap \
7070;fi
7171
72+ #####################################
73+ # LDAP:
74+ #####################################
75+
76+ ARG INSTALL_LDAP=false
77+ ENV INSTALL_LDAP ${INSTALL_LDAP}
78+
79+ RUN if [ ${INSTALL_LDAP} = true ]; then \
80+ apt-get update -yqq && \
81+ apt-get install -y libldap2-dev && \
82+ apt-get install -y php7.0-ldap \
83+ ;fi
84+
7285#####################################
7386# Set Timezone
7487#####################################
Original file line number Diff line number Diff line change @@ -69,6 +69,19 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \
6969 apt-get -y install libxml2-dev php7.1-soap \
7070;fi
7171
72+ #####################################
73+ # LDAP:
74+ #####################################
75+
76+ ARG INSTALL_LDAP=false
77+ ENV INSTALL_LDAP ${INSTALL_LDAP}
78+
79+ RUN if [ ${INSTALL_LDAP} = true ]; then \
80+ apt-get update -yqq && \
81+ apt-get install -y libldap2-dev && \
82+ apt-get install -y php7.1-ldap \
83+ ;fi
84+
7285#####################################
7386# Set Timezone
7487#####################################
You can’t perform that action at this time.
0 commit comments