Skip to content

Commit

Permalink
docs: Add smtp4dev to example local SMTP servers (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
spencewenski authored Nov 13, 2024
1 parent cee58e0 commit ed47af2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,15 @@ docker run -d -p 5432:5432 -e POSTGRES_USER=roadster -e POSTGRES_DB=example_dev
docker run -d -p 6379:6379 redis:7.2-alpine
```

## Start local SMTP server instance (example: [maildev](https://github.com/maildev/maildev))
## Start local SMTP server instance

### [smtp4dev](https://github.com/rnwood/smtp4dev)

```shell
docker run -d -p 1080:80 -p 1025:25 rnwood/smtp4dev
```

### [maildev](https://github.com/maildev/maildev)

```shell
docker run -d -p 1080:1080 -p 1025:1025 maildev/maildev
Expand Down

0 comments on commit ed47af2

Please sign in to comment.