From 07ee958904619c387ad14f1bbc39ca3de97eff12 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Tue, 21 May 2024 15:28:08 +0200 Subject: [PATCH] Update Dockerfile --- docker/nginx/Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docker/nginx/Dockerfile b/docker/nginx/Dockerfile index 148c699a..75eecc27 100644 --- a/docker/nginx/Dockerfile +++ b/docker/nginx/Dockerfile @@ -11,6 +11,7 @@ RUN apt-get update && \ add-apt-repository ppa:ondrej/php && \ apt-get update && \ apt-get install --no-install-recommends -y \ + msmtp \ ttyd \ screen \ nginx \ @@ -126,7 +127,21 @@ RUN sed -i \ -e 's/^post_max_size = .*/post_max_size = 1024M/' \ -e 's/^max_execution_time = .*/max_execution_time = 600/' \ -e 's/^opcache.enable= .*/opcache.enable=1/' \ + -e 's/^;sendmail_path = .*/sendmail_path = "/usr/bin/msmtp -t"/' \ /etc/php/8.2/fpm/php.ini +RUN sed -i \ + -e 's/^upload_max_filesize = .*/upload_max_filesize = 1024M/' \ + -e 's/^max_input_time = .*/max_input_time = 600/' \ + -e 's/^memory_limit = .*/memory_limit = -1/' \ + -e 's/^post_max_size = .*/post_max_size = 1024M/' \ + -e 's/^max_execution_time = .*/max_execution_time = 600/' \ + -e 's/^opcache.enable= .*/opcache.enable=1/' \ + -e 's/^;sendmail_path = .*/sendmail_path = "/usr/bin/msmtp -t"/' \ + /etc/php/8.2/cli/php.ini + + +########## EMAIL ########## +COPY msmtprc /etc/msmtprc