Skip to content

Commit 0ab7d95

Browse files
committed
Replace mailcatcher with mailpit
1 parent 0ff0a0a commit 0ab7d95

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

symfony/mailer/4.3/manifest.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,20 @@
99
"docker-compose.override.yml": {
1010
"services": [
1111
"mailer:",
12-
" image: sj26/mailcatcher",
13-
" ports: [\"1025\", \"1080\"]"
14-
]
12+
" image: axllent/mailpit",
13+
" restart: always",
14+
" volumes:",
15+
" - mailer_data:/data",
16+
" ports:",
17+
" - \"1025\"",
18+
" - \"8025\"",
19+
" environment:",
20+
" MP_MAX_MESSAGES: 5000",
21+
" MP_DATA_FILE: /data/mailpit.db",
22+
" MP_SMTP_AUTH_ACCEPT_ANY: 1",
23+
" MP_SMTP_AUTH_ALLOW_INSECURE: 1"
24+
],
25+
"volumes": ["mailer_data:"]
1526
}
1627
},
1728
"aliases": ["mailer", "mail"]

0 commit comments

Comments
 (0)