diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 6a939087..01b148e9 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 diff --git a/docker-compose.yml b/docker-compose.yml index b063b53a..fd9af97d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -921,6 +921,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