🧑‍💻 Add mailhog service to development environment (#1451)

This commit is contained in:
Luke Vella 2024-12-01 21:15:23 +00:00 committed by GitHub
parent 659307ca0b
commit cf283c8ab3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 1 deletions

View file

@ -18,4 +18,11 @@ SUPPORT_EMAIL=support@rallly.co
NEXT_PUBLIC_SELF_HOSTED=false
# Suppress warning from sentry during local development
SENTRY_IGNORE_API_RESOLUTION_ERROR=1
SENTRY_IGNORE_API_RESOLUTION_ERROR=1
# Mailhog SMTP settings
SMTP_HOST=localhost
SMTP_PORT=1025
SMTP_SECURE=false
SMTP_USER=
SMTP_PWD=

View file

@ -45,6 +45,12 @@ services:
MINIO_ROOT_PASSWORD: minio123
volumes:
- s3-data:/data
mailhog:
image: mailhog/mailhog
ports:
- "8025:8025"
- "1025:1025"
# This service just make sure a bucket with the right policies is created
createbuckets:
image: minio/mc