Skip to content

Commit

Permalink
Add mailpit container (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
ucan-lab authored Jun 3, 2023
1 parent 74b4a78 commit 8370a8d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,20 +61,20 @@ http://localhost
### app container

- Base image
- [php](https://hub.docker.com/_/php):8.1-fpm-bullseye
- [composer](https://hub.docker.com/_/composer):2.2
- [php](https://hub.docker.com/_/php):8.2-fpm-bullseye
- [composer](https://hub.docker.com/_/composer):2.5

### web container

- Base image
- [nginx](https://hub.docker.com/_/nginx):1.22
- [nginx](https://hub.docker.com/_/nginx):1.25

### db container

- Base image
- [mysql/mysql-server](https://hub.docker.com/r/mysql/mysql-server):8.0

### mailhog container
### mailpit container

- Base image
- [mailhog/mailhog](https://hub.docker.com/r/mailhog/mailhog)
- [axllent/mailpit](https://hub.docker.com/r/axllent/mailpit)
6 changes: 3 additions & 3 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ services:
- MYSQL_PASSWORD=${DB_PASSWORD:-secret}
- MYSQL_ROOT_PASSWORD=${DB_PASSWORD:-secret}

mailhog:
image: mailhog/mailhog
mailpit:
image: axllent/mailpit
ports:
- target: 8025
published: ${MAILHOG_PUBLISHED_PORT:-8025}
published: ${MAILPIT_PUBLISHED_PORT:-8025}
protocol: tcp
mode: host

0 comments on commit 8370a8d

Please sign in to comment.