From 8b8f0698e31932c2742f39eb26721a4d5e20f974 Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Sun, 30 Jun 2024 03:05:25 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20mailcatcher=20configuration?= =?UTF-8?q?=20(#1244)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.override.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docker-compose.override.yml b/docker-compose.override.yml index 7207ce1..418b535 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -62,6 +62,17 @@ services: INSTALL_DEV: ${INSTALL_DEV-true} # command: sleep infinity # Infinite loop to keep container alive doing nothing command: /start-reload.sh + environment: + SMTP_HOST: "mailcatcher" + SMTP_PORT: "1025" + SMTP_TLS: "false" + EMAILS_FROM_EMAIL: "noreply@example.com" + + mailcatcher: + image: schickling/mailcatcher + ports: + - "1080:1080" + - "1025:1025" frontend: restart: "no"