We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 94f0c76 + 12edf02 commit 49e1018Copy full SHA for 49e1018
src/docker/README.md
@@ -5,6 +5,7 @@
5
- PostgreSQL 13
6
- SQL Server 2019
7
- MySQL 5.7
8
+- MailHog
9
10
## Usage
11
@@ -65,3 +66,17 @@ database.default.password = mysql
65
66
database.default.DBDriver = MySQLi
67
database.default.port = 3306
68
```
69
+
70
+### MailHog
71
72
+#### .env
73
74
+```
75
+email.protocol = smtp
76
+email.SMTPHost = localhost
77
+email.SMTPPort = 1025
78
+email.SMTPCrypto =
79
+email.fromEmail = [email protected]
80
81
82
+Navigate to http://localhost:8025/ to see sent mails.
src/docker/docker-compose.yaml
@@ -28,3 +28,9 @@ services:
28
MYSQL_DATABASE: test
29
MYSQL_USER: mysql
30
MYSQL_PASSWORD: mysql
31
32
+ mailhog:
33
+ image: mailhog/mailhog
34
+ ports:
35
+ - 1025:1025
36
+ - 8025:8025
0 commit comments