Browse Source

Add mailcatcher configuration (#1244)

pull/13907/head
Patrick Arminio 1 year ago
committed by GitHub
parent
commit
8b8f0698e3
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 11
      docker-compose.override.yml

11
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"

Loading…
Cancel
Save