Skip to content
Snippets Groups Projects
Commit 8422401c authored by Christian Elberfeld's avatar Christian Elberfeld
Browse files
parents e1d34fc0 f16b47b8
No related branches found
No related tags found
No related merge requests found
FROM php:7.4.11-apache FROM php:7.4.19-apache
# php-gd modul für dw2pdf plugin # php-gd modul für dw2pdf plugin
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
...@@ -14,6 +14,13 @@ RUN touch /usr/local/etc/php/conf.d/uploads.ini \ ...@@ -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 "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 && 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 # Change apache settings
RUN a2enmod rewrite 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