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 diff --git a/compose/docker-compose.override.yml-mailpit b/compose/docker-compose.override.yml-mailpit new file mode 100644 index 000000000..75e6dcacf --- /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