Merge pull request #4163 from aaa2000/docker-increase-php-memory-limit

Increase php memory limit PHP Docker
This commit is contained in:
Jérémy Benoist 2019-11-12 13:58:13 +01:00 committed by GitHub
commit 8d8d6818fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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 \
@ -32,6 +33,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