Add mailcatcher configuration (#1244)

This commit is contained in:
Patrick Arminio
2024-06-30 03:05:25 +02:00
committed by GitHub
parent 91c35331e4
commit 8b8f0698e3

View File

@@ -62,6 +62,17 @@ services:
INSTALL_DEV: ${INSTALL_DEV-true} INSTALL_DEV: ${INSTALL_DEV-true}
# command: sleep infinity # Infinite loop to keep container alive doing nothing # command: sleep infinity # Infinite loop to keep container alive doing nothing
command: /start-reload.sh 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: frontend:
restart: "no" restart: "no"