From 424b5cd4ae1d48736452049bddbdf2ded8ee766d Mon Sep 17 00:00:00 2001 From: Roland Bewick Date: Sat, 23 Sep 2023 12:06:40 +0700 Subject: [PATCH] fix: mailhog port number --- .env.example | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index e178d49..36881f9 100644 --- a/.env.example +++ b/.env.example @@ -4,7 +4,7 @@ DATABASE_URL=postgres://user:password@localhost:5432/nwc-periodic-payments EMAIL_SERVER_USER=username EMAIL_SERVER_PASSWORD=password EMAIL_SERVER_HOST=localhost -EMAIL_SERVER_PORT=1026 +EMAIL_SERVER_PORT=1025 EMAIL_FROM=noreply@example.com INNGEST_EVENT_KEY="local" diff --git a/docker-compose.yml b/docker-compose.yml index 9e81e35..2de22e4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,5 +14,5 @@ services: mailhog: image: mailhog/mailhog ports: - - "1026:1025" + - "1025:1025" - "8025:8025"