mailcatcher
Catches mail and serves it through a dream.
160
Catches mail and serves it through a dream.
MailCatcher runs a super simple SMTP server which catches any message sent to it to display in a web interface. Run mailcatcher, set your favourite app to deliver to smtp://127.0.0.1:1025 instead of your default SMTP server, then check out http://127.0.0.1:1080 to see the mail that's arrived so far.
docker run -ti -p 1080:1080 -p 1025:1025 meschac38000/mailcatcher:0.10.0
mailcatcher:
image: meschac38000/mailcatcher:0.10.0
container_name: mailcatcher
restart: always
ports:
- 1080:1080
- 1025:1025
healthcheck:
test: ["CMD", "wget", "--spider", "127.0.0.1:1080"]
interval: 3s
timeout: 3s
retries: 5
start_period: 3s
Content type
Image
Digest
sha256:7feba45ea…
Size
51.1 MB
Last updated
over 1 year ago
docker pull meschac38000/mailcatcher:0.10.0