From aebc905f64c80d1b8655ee2b8beb303759171129 Mon Sep 17 00:00:00 2001 From: wuhei <30749950+wuhei@users.noreply.github.com> Date: Sun, 23 Mar 2025 20:05:11 +0100 Subject: [PATCH] Update mail host in .env.example Mail host is configured as "mailpit" but in the docker-compose.yml file it's called "mail". Following the same nomenclature choice for "db" i'd say keep "mail" in docker-compose in case users want to switch the "mail" container to something else (mailtrap, mailhog, etc.) --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 36e1a773..16a773ec 100644 --- a/.env.example +++ b/.env.example @@ -47,7 +47,7 @@ REDIS_PASSWORD=null REDIS_PORT=6379 MAIL_MAILER=smtp -MAIL_HOST=mailpit +MAIL_HOST=mail MAIL_PORT=1025 MAIL_USERNAME=null MAIL_PASSWORD=null