]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Merge pull request #4163 from aaa2000/docker-increase-php-memory-limit
authorJérémy Benoist <j0k3r@users.noreply.github.com>
Tue, 12 Nov 2019 12:58:13 +0000 (13:58 +0100)
committerGitHub <noreply@github.com>
Tue, 12 Nov 2019 12:58:13 +0000 (13:58 +0100)
Increase php memory limit PHP Docker

1  2 
docker/php/Dockerfile

diff --combined docker/php/Dockerfile
index c43e07fd8190366a711fde0ea8c00ad1afffb6c0,43e3cc5f323f4b3a2597bf9534e76278a963cb4f..171e12fc979e0d4ee3777e54a653cfc5bfb12418
@@@ -2,6 -2,7 +2,7 @@@ FROM php:7.2-fp
  
  # 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 \
          libsqlite3-dev \
          imagemagick \
          libmagickwand-dev \
 -        libtidy-dev
 +        libtidy-dev \
 +        git
  RUN docker-php-ext-install \
          iconv \
          mbstring \
 +        gd \
          intl \
          pdo \
          pdo_mysql \
          pdo_pgsql \
          pdo_sqlite \
 -        tidy
 +        sockets \
 +        tidy \
 +        bcmath \
 +        zip
  
  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