mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-09 03:52:13 +00:00
Adds an example docker compose file that can be used to quickly stand up an SMTP sink service that is useful when load testing an SMTP server. The sink has configurable and "realistic" bounce response rates, so that you can excercise queue growth scenarios.
14 lines
363 B
YAML
14 lines
363 B
YAML
services:
|
|
sink:
|
|
container_name: kumo-sink
|
|
hostname: sinkinator
|
|
# use the latest build from `main`
|
|
image: ghcr.io/kumocorp/kumomta-dev:latest
|
|
# alternatively, use the latest stable release
|
|
#image: ghcr.io/kumocorp/kumomta:latest
|
|
volumes:
|
|
- ./policy:/opt/kumomta/etc/policy
|
|
restart: unless-stopped
|
|
ports:
|
|
- 2525:25
|