meschac38000/mailcatcher

By meschac38000

Updated over 1 year ago

Catches mail and serves it through a dream.

Image
Networking
Message queues
Developer tools
0

160

meschac38000/mailcatcher repository overview

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.

Doc: https://mailcatcher.me/

Quick start
docker run -ti -p 1080:1080 -p 1025:1025 meschac38000/mailcatcher:0.10.0
Using docker-compose file
  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

Tag summary

Content type

Image

Digest

sha256:7feba45ea

Size

51.1 MB

Last updated

over 1 year ago

docker pull meschac38000/mailcatcher:0.10.0