File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ Unreleased]
8+
9+ ### Added
10+
11+ * Add mt/mailpit.yml
12+
13+ Enable to start MailPit service by the following command.
14+ ```
15+ $ make up-psgi DOCKER_COMPOSE_USER_YAML="-f mt/mailpit.yml"
16+ ```
17+
718## [ 2.5.0] - 2023-02-15
819
920### Added
Original file line number Diff line number Diff line change @@ -45,10 +45,12 @@ export DOCKER_MYSQL_IMAGE
4545export DOCKER_MEMCACHED_IMAGE
4646export DOCKER_LDAP_IMAGE
4747export DOCKER_FTPD_IMAGE
48+ export DOCKER_MAILPIT_IMAGE
4849export DOCKER_VOLUME_MOUNT_FLAG
4950export MT_RUN_VIA
5051export HTTPD_EXPOSE_PORT
5152export MT_EXPOSE_PORT
53+ export MAILPIT_EXPOSE_PORT
5254export PLACKUP
5355export CMD
5456
Original file line number Diff line number Diff line change 1+ version : " 3"
2+ services :
3+ mailpit :
4+ image : ${DOCKER_MAILPIT_IMAGE:-axllent/mailpit}
5+ restart : always
6+ ports :
7+ - " ${MAILPIT_EXPOSE_PORT:-8025}:8025"
You can’t perform that action at this time.
0 commit comments