mirror of
https://github.com/lukevella/rallly.git
synced 2025-08-06 09:59:00 +02:00
🧑💻 Add mailhog service to development environment (#1451)
This commit is contained in:
parent
659307ca0b
commit
cf283c8ab3
2 changed files with 14 additions and 1 deletions
|
@ -18,4 +18,11 @@ SUPPORT_EMAIL=support@rallly.co
|
||||||
NEXT_PUBLIC_SELF_HOSTED=false
|
NEXT_PUBLIC_SELF_HOSTED=false
|
||||||
|
|
||||||
# Suppress warning from sentry during local development
|
# 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=
|
|
@ -45,6 +45,12 @@ services:
|
||||||
MINIO_ROOT_PASSWORD: minio123
|
MINIO_ROOT_PASSWORD: minio123
|
||||||
volumes:
|
volumes:
|
||||||
- s3-data:/data
|
- 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
|
# This service just make sure a bucket with the right policies is created
|
||||||
createbuckets:
|
createbuckets:
|
||||||
image: minio/mc
|
image: minio/mc
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue