Files
kumomta/examples/smart-sink-docker/compose.yaml
T
Wez Furlong a412757513 Add smart-sink example docker compose
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.
2024-09-10 08:00:06 -07:00

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