Mailcatcher - updated and with basic auth option
2.3K
MailCatcher runs a super simple SMTP server which catches any message sent to it to display in a web interface.
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
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
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
Content type
Image
Digest
sha256:03dc39667…
Size
235.9 MB
Last updated
over 1 year ago
docker pull dcotecnologia/mailcatcher