Add mailhog for local smtp
This commit is contained in:
@ -47,6 +47,19 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- "twenty-hasura"
|
- "twenty-hasura"
|
||||||
- "postgres"
|
- "postgres"
|
||||||
|
- "mailhog"
|
||||||
|
mailhog:
|
||||||
|
image: jcalonso/mailhog
|
||||||
|
environment:
|
||||||
|
SMTP_HOST: mailhog
|
||||||
|
SMTP_PORT: 1025
|
||||||
|
SMTP_PASS: smtp-secret
|
||||||
|
SMTP_USER: smtp-user
|
||||||
|
SMTP_SECURE: "false"
|
||||||
|
SMTP_SENDER: auth@localhost
|
||||||
|
ports:
|
||||||
|
- "1025:1025"
|
||||||
|
- "8025:8025"
|
||||||
twenty-server:
|
twenty-server:
|
||||||
build:
|
build:
|
||||||
context: ../..
|
context: ../..
|
||||||
|
|||||||
Reference in New Issue
Block a user