dcotecnologia/mailcatcher

By dcotecnologia

Updated over 1 year ago

Mailcatcher - updated and with basic auth option

Image
Message queues
Developer tools
Web servers
0

2.3K

dcotecnologia/mailcatcher repository overview

It is mailcatcher, but + basic authentication!

MailCatcher⁠ runs a super simple SMTP server which catches any message sent to it to display in a web interface.

Installation

Automated builds of the image are available on Dockerhub and is the recommended method of installation.

docker pull dockage/mailcatcher:latest

Alternately you can build the image locally.

docker build --tag="$USER/mailcatcher" github.com/dcotecnologia/mailcatcher

Quick Start

The quickest way to get started is using docker-compose⁠. Alternately, you can manually launch the mailcatcher container.

docker run --name='mailcatcher' -d \
  --publish=1080:1080 \
  --publish=1025:1025 \
dcotecnologia/mailcatcher:latest

Define a user and password

To define an authentication you must use environment variables MAILCATCHER_AUTH_USER and MAILCATCHER_AUTH_PASSWORD.

docker run --name='mailcatcher' -d \
  --publish=1080:1080 \
  --publish=1025:1025 \
  -e MAILCATCHER_AUTH_USER=admin \
  -e MAILCATCHER_AUTH_PASSWORD=senha123 \
  dcotecnologia/mailcatcher:latest

Get in touch with the most recents updates in https://github.com/dcotecnologia/mailcatcher

Tag summary

Content type

Image

Digest

sha256:03dc39667

Size

235.9 MB

Last updated

over 1 year ago

docker pull dcotecnologia/mailcatcher