From 36bd44d0655bca0b8978ec5ea940c8ab7262dd4f Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Sun, 1 Feb 2026 12:45:01 -0300 Subject: [PATCH 1/3] refactor: replace mailhog by mailpit Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 7281d4d..d3ca14a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -53,7 +53,7 @@ services: - MAIL_FROM_ADDRESS=${MAIL_FROM_ADDRESS:-nextcloud} - MAIL_DOMAIN=${MAIL_DOMAIN:-nextcloud.test} - MAIL_SMTPPORT=${MAIL_SMTPPORT:-1025} - - MAIL_SMTPHOST=${MAIL_SMTPHOST:-mailhog} + - MAIL_SMTPHOST=${MAIL_SMTPHOST:-mailpit} - VERSION_NEXTCLOUD=${VERSION_NEXTCLOUD:-master} - AUTOINSTALL=${AUTOINSTALL:-1} - XDEBUG_CONFIG @@ -69,8 +69,8 @@ services: - ./volumes/nginx/includes:/etc/nginx/conf.d/includes/ ports: - 127.0.0.1:${HTTP_PORT:-80}:80 - mailhog: - image: blueimp/mailhog + mailpit: + image: axllent/mailpit ports: - 127.0.0.1:${MAILHOG_PORT:-8025}:8025 redis: From a0c23029e3d5d14f5f677c8c982954011393e2d1 Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Sun, 1 Feb 2026 12:45:20 -0300 Subject: [PATCH 2/3] chore: update command at README Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 592e312..0a766c0 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ An development apps environment for Nextcloud. Run the command: ```bash -docker compose up nextcloud mysql nginx mailhog redis +docker compose up nextcloud mysql nginx mailpit redis ``` * [Advanced setup](docs/advanced-setup.md) From 85db0d5cc88c0218c0a6539231d188e688d0f7e7 Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Sun, 1 Feb 2026 12:45:36 -0300 Subject: [PATCH 3/3] chore: update documentation Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> --- docs/bash_aliases.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/bash_aliases.md b/docs/bash_aliases.md index cc9a492..0680b17 100644 --- a/docs/bash_aliases.md +++ b/docs/bash_aliases.md @@ -25,8 +25,8 @@ source ~/.bashrc ```bash alias occ='docker compose exec -u www-data nextcloud occ' -alias nextcloud-mysql='docker compose up nextcloud mysql nginx mailhog redis' -alias nextcloud-pgsql='docker compose up nextcloud pgsql nginx mailhog redis' +alias nextcloud-mysql='docker compose up nextcloud mysql nginx mailpit redis' +alias nextcloud-pgsql='docker compose up nextcloud pgsql nginx mailpit redis' ``` ⬅️ [Back to index](../README.md)