]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Increase php memory limit PHP Docker 4163/head
authoradev <adev2000@gmail.com>
Sun, 27 Oct 2019 18:25:47 +0000 (19:25 +0100)
committeradev <adev2000@gmail.com>
Sun, 27 Oct 2019 18:25:47 +0000 (19:25 +0100)
docker/php/Dockerfile

index ffdf33c96a508e1cac6f1ea61418d31aa799e093..43e3cc5f323f4b3a2597bf9534e76278a963cb4f 100644 (file)
@@ -2,6 +2,7 @@ FROM php:7.2-fpm
 
 # Default timezone. To change it, use the argument in the docker-compose.yml file
 ARG timezone='Europe/Paris'
+ARG memorylimit='512M'
 
 RUN apt-get update && apt-get install -y \
         libmcrypt-dev \
@@ -27,6 +28,7 @@ RUN docker-php-ext-install \
 RUN printf "\n" | pecl install imagick && docker-php-ext-enable imagick
 
 RUN echo "date.timezone="$timezone > /usr/local/etc/php/conf.d/date_timezone.ini
+RUN echo "memory_limit ="$memorylimit > /usr/local/etc/php/conf.d/memory_limit.ini
 
 RUN usermod -u 1000 www-data