فهرست منبع

Merge pull request #2713 from noud/mailcatcher

Mailcatcher
Shao Yu-Lung (Allen) 4 سال پیش
والد
کامیت
9780e73c76
3فایلهای تغییر یافته به همراه18 افزوده شده و 0 حذف شده
  1. 1 0
      DOCUMENTATION/content/introduction/index.md
  2. 10 0
      docker-compose.yml
  3. 7 0
      mailcatcher/Dockerfile

+ 1 - 0
DOCUMENTATION/content/introduction/index.md

@@ -137,6 +137,7 @@ That's it! enjoy :)
 
 - **Mail Servers:**
     - Mailu 
+    - Mailcatcher
     - Mailhog 
     - MailDev
 

+ 10 - 0
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

+ 7 - 0
mailcatcher/Dockerfile

@@ -0,0 +1,7 @@
+FROM schickling/mailcatcher
+
+LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
+
+CMD ["mailcatcher", "--no-quit", "--foreground", "--ip=0.0.0.0"]
+
+EXPOSE 1025 1080