From e483ed084fc498b8c46f0ae73dacd7bbcca9786d Mon Sep 17 00:00:00 2001 From: Noud de Brouwer Date: Sat, 19 Sep 2020 23:39:38 +0200 Subject: [PATCH 1/2] mailcatcher --- docker-compose.yml | 10 ++++++++++ mailcatcher/Dockerfile | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 mailcatcher/Dockerfile diff --git a/docker-compose.yml b/docker-compose.yml index efdfef9e..fc87a2f8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -909,6 +909,16 @@ services: networks: - frontend +### Mailcatcher ################################################ + mailcatcher: + build: ./mailcatcher + ports: + - "1025:1025" + - "1080:1080" + networks: + - frontend + - backend + ### Mailhog ################################################ mailhog: build: ./mailhog diff --git a/mailcatcher/Dockerfile b/mailcatcher/Dockerfile new file mode 100644 index 00000000..6135085f --- /dev/null +++ b/mailcatcher/Dockerfile @@ -0,0 +1,7 @@ +FROM schickling/mailcatcher + +LABEL maintainer="Johannes Schickling " + +CMD ["mailcatcher", "--no-quit", "--foreground", "--ip=0.0.0.0"] + +EXPOSE 1025 1080 From c49238652ed6d1458a35ecd5b5c03ebaa78c9277 Mon Sep 17 00:00:00 2001 From: Noud de Brouwer Date: Sat, 19 Sep 2020 23:47:10 +0200 Subject: [PATCH 2/2] doc --- DOCUMENTATION/content/introduction/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 6479dad3..2c42c89d 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -137,6 +137,7 @@ That's it! enjoy :) - **Mail Servers:** - Mailu + - Mailcatcher - Mailhog - MailDev