Skip to content

Commit 195f2ff

Browse files
committed
Add mt/mailpit.yml
1 parent 48aaffd commit 195f2ff

3 files changed

Lines changed: 20 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,12 @@ export DOCKER_MYSQL_IMAGE
4545
export DOCKER_MEMCACHED_IMAGE
4646
export DOCKER_LDAP_IMAGE
4747
export DOCKER_FTPD_IMAGE
48+
export DOCKER_MAILPIT_IMAGE
4849
export DOCKER_VOLUME_MOUNT_FLAG
4950
export MT_RUN_VIA
5051
export HTTPD_EXPOSE_PORT
5152
export MT_EXPOSE_PORT
53+
export MAILPIT_EXPOSE_PORT
5254
export PLACKUP
5355
export CMD
5456

mt/mailpit.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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"

0 commit comments

Comments
 (0)