feat(email): add email service and configuration for sending emails
This commit is contained in:
parent
7f2aeefba2
commit
110dacb6dd
7 changed files with 114 additions and 1 deletions
12
compose.yml
12
compose.yml
|
@ -15,4 +15,14 @@ services:
|
|||
healthcheck:
|
||||
test: "exit 0"
|
||||
ports:
|
||||
- "5432:5432"
|
||||
- "5432:5432"
|
||||
mailpit:
|
||||
image: axllent/mailpit
|
||||
container_name: casino-mailpit
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 8025:8025
|
||||
- 1025:1025
|
||||
environment:
|
||||
MP_SMTP_AUTH_ACCEPT_ANY: 1
|
||||
MP_SMTP_AUTH_ALLOW_INSECURE: 1
|
||||
|
|
Reference in a new issue