Skip to content

Commit 2cc0deb

Browse files
authored
Merge pull request #96 from LibreCodeCoop/chore/replace-mailhog-by-mailpit
chore: replace mailhog by mailpit
2 parents 642cf55 + 85db0d5 commit 2cc0deb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ An development apps environment for Nextcloud.
77
Run the command:
88

99
```bash
10-
docker compose up nextcloud mysql nginx mailhog redis
10+
docker compose up nextcloud mysql nginx mailpit redis
1111
```
1212

1313
* [Advanced setup](docs/advanced-setup.md)

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ services:
5353
- MAIL_FROM_ADDRESS=${MAIL_FROM_ADDRESS:-nextcloud}
5454
- MAIL_DOMAIN=${MAIL_DOMAIN:-nextcloud.test}
5555
- MAIL_SMTPPORT=${MAIL_SMTPPORT:-1025}
56-
- MAIL_SMTPHOST=${MAIL_SMTPHOST:-mailhog}
56+
- MAIL_SMTPHOST=${MAIL_SMTPHOST:-mailpit}
5757
- VERSION_NEXTCLOUD=${VERSION_NEXTCLOUD:-master}
5858
- AUTOINSTALL=${AUTOINSTALL:-1}
5959
- XDEBUG_CONFIG
@@ -69,8 +69,8 @@ services:
6969
- ./volumes/nginx/includes:/etc/nginx/conf.d/includes/
7070
ports:
7171
- 127.0.0.1:${HTTP_PORT:-80}:80
72-
mailhog:
73-
image: blueimp/mailhog
72+
mailpit:
73+
image: axllent/mailpit
7474
ports:
7575
- 127.0.0.1:${MAILHOG_PORT:-8025}:8025
7676
redis:

docs/bash_aliases.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ source ~/.bashrc
2525

2626
```bash
2727
alias occ='docker compose exec -u www-data nextcloud occ'
28-
alias nextcloud-mysql='docker compose up nextcloud mysql nginx mailhog redis'
29-
alias nextcloud-pgsql='docker compose up nextcloud pgsql nginx mailhog redis'
28+
alias nextcloud-mysql='docker compose up nextcloud mysql nginx mailpit redis'
29+
alias nextcloud-pgsql='docker compose up nextcloud pgsql nginx mailpit redis'
3030
```
3131

3232
⬅️ [Back to index](../README.md)

0 commit comments

Comments
 (0)