From dab7d55c983fb666a7d0cad2a697a22a7b0a6cd9 Mon Sep 17 00:00:00 2001 From: Rob Meijerink Date: Thu, 11 May 2023 18:44:20 +0200 Subject: [PATCH 1/3] Add Mailpit compose file --- compose/docker-compose.override.yml-mailpit | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 compose/docker-compose.override.yml-mailpit diff --git a/compose/docker-compose.override.yml-mailpit b/compose/docker-compose.override.yml-mailpit new file mode 100644 index 000000000..1c26f75ce --- /dev/null +++ b/compose/docker-compose.override.yml-mailpit @@ -0,0 +1,23 @@ +# vim: set ft=yaml: +--- +version: '2.3' + +services: + + # ----------------------------------------------------------------------------------------------- + # MailPit + # ----------------------------------------------------------------------------------------------- + mailpit: + image: axllent/mailpit:${MAILPIT_SERVER:-latest} + hostname: mailpit + restart: unless-stopped + ports: + - "${LOCAL_LISTEN_ADDR}${SMTP_PORT_MAILPIT:-1025}:1025" + - "${LOCAL_LISTEN_ADDR}${HOST_PORT_MAILPIT:-8025}:8025" + networks: + app_net: + ipv4_address: 172.16.238.201 + depends_on: + - bind + - php + - httpd From 0153693382d7af8844314c1fba7dbd68155a49f3 Mon Sep 17 00:00:00 2001 From: Rob Meijerink Date: Thu, 11 May 2023 18:59:03 +0200 Subject: [PATCH 2/3] Add Mailpit to README --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d292744e3..81b408419 100644 --- a/README.md +++ b/README.md @@ -457,7 +457,8 @@ Each of them is also available in multiple different versions in order to reflec | HAProxy | Apache | PHP | MariaDB | Memcached | RabbitMQ | ElasticSearch | Bind | | Varnish | Nginx | Python (Flask) | MySQL | MongoDB | Solr | Logstash | Blackfire | | | | | PerconaDB | Redis | | Kibana | MailHog | -| | | | PostgreSQL | | | | Ngrok | +| | | | PostgreSQL | | | | Mailpit | +| | | | | | | | Ngrok |
@@ -670,6 +671,7 @@ Additionally to the default stack, there are a variety of other services that ca Blackfire ELK MailHog + Mailpit Ngrok RabbitMQ Solr @@ -683,6 +685,7 @@ Additionally to the default stack, there are a variety of other services that ca 1.8 5.x.y v1.0.0 + v1.x 2.x 3.6 5 @@ -694,6 +697,7 @@ Additionally to the default stack, there are a variety of other services that ca ... 6.x.y latest + latest 3.7 6 From 568041b690b87b6bc3c693e529e8e30cc234296e Mon Sep 17 00:00:00 2001 From: Rob Meijerink Date: Thu, 11 May 2023 19:35:12 +0200 Subject: [PATCH 3/3] MailPit -> mailpit --- compose/docker-compose.override.yml-mailpit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/docker-compose.override.yml-mailpit b/compose/docker-compose.override.yml-mailpit index 1c26f75ce..75e6dcacf 100644 --- a/compose/docker-compose.override.yml-mailpit +++ b/compose/docker-compose.override.yml-mailpit @@ -5,7 +5,7 @@ version: '2.3' services: # ----------------------------------------------------------------------------------------------- - # MailPit + # Mailpit # ----------------------------------------------------------------------------------------------- mailpit: image: axllent/mailpit:${MAILPIT_SERVER:-latest}