From 6c5953f973eee79f7997b2f52eac7c654e5eb156 Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Sun, 31 May 2020 13:49:21 +0200 Subject: [PATCH] Fix mixed SMTP/HTTP ports for mailhog in the makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 43bf217ad..90fde98a3 100644 --- a/Makefile +++ b/Makefile @@ -129,7 +129,7 @@ codegen: $(PROTOGEN) ./codegen.sh mailhog.up: - $(DOCKER) run --rm --publish $(DEV_MAILHOG_SMTP_ADDR):8025 --publish $(DEV_MAILHOG_HTTP_ADDR):1025 mailhog/mailhog + $(DOCKER) run --rm --publish $(DEV_MAILHOG_HTTP_ADDR):8025 --publish $(DEV_MAILHOG_SMTP_ADDR):1025 mailhog/mailhog minio.up: # Runs temp minio server