Skip to content
Snippets Groups Projects
Commit f16b47b8 authored by Jens Sandmann's avatar Jens Sandmann
Browse files

Dokuwiki: add ldap to container

parent b62e5c58
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,13 @@ RUN touch /usr/local/etc/php/conf.d/uploads.ini \
&& echo "upload_max_filesize = 10M;" >> /usr/local/etc/php/conf.d/uploads.ini \
&& echo "post_max_size = 10M;" >> /usr/local/etc/php/conf.d/uploads.ini
# Configure LDAP.
RUN apt-get update \
&& apt-get install libldap2-dev -y \
&& docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \
&& docker-php-ext-install ldap
# Change apache settings
RUN a2enmod rewrite
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment