From 04025b89de4225dc373013f7a1c922abd3e56163 Mon Sep 17 00:00:00 2001 From: Tom Wiesing Date: Thu, 6 Aug 2020 09:55:47 +0200 Subject: [PATCH] Increase composer memory to 4g --- distillery/resources/compose/barrel/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distillery/resources/compose/barrel/Dockerfile b/distillery/resources/compose/barrel/Dockerfile index d0013b7..8287a14 100644 --- a/distillery/resources/compose/barrel/Dockerfile +++ b/distillery/resources/compose/barrel/Dockerfile @@ -66,8 +66,8 @@ RUN a2ensite wisski VOLUME /var/www/.composer VOLUME /var/www/data -# increase the php memory limit to 2g -RUN echo 'memory_limit=2G' > /usr/local/etc/php/conf.d/memory-limit.ini +# increase the php memory limit to 4g +RUN echo 'memory_limit=4G' > /usr/local/etc/php/conf.d/memory-limit.ini # Add and configure the entrypoint ADD scripts/entrypoint.sh /entrypoint.sh