Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- PostgreSQL 13
- SQL Server 2019
- MySQL 5.7
- MailHog

## Usage

Expand Down Expand Up @@ -65,3 +66,17 @@ database.default.password = mysql
database.default.DBDriver = MySQLi
database.default.port = 3306
```

### MailHog

#### .env

```
email.protocol = smtp
email.SMTPHost = localhost
email.SMTPPort = 1025
email.SMTPCrypto =
email.fromEmail = [email protected]
```

Navigate to http://localhost:8025/ to see sent mails.
6 changes: 6 additions & 0 deletions src/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,9 @@ services:
MYSQL_DATABASE: test
MYSQL_USER: mysql
MYSQL_PASSWORD: mysql

mailhog:
image: mailhog/mailhog
ports:
- 1025:1025
- 8025:8025