/mailcatcher

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

Primary LanguageHCLApache License 2.0Apache-2.0

MailCatcher GitHub Workflow Status (branch) Docker Pulls Docker Stars

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:0.8.2

Alternately you can build the image locally.

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

Quick Start

The quickest way to get started is using docker-compose.

wget https://raw.githubusercontent.com/dockage/mailcatcher/master/docker-compose.yml
docker-compose up

Alternately, you can manually launch the mailcatcher container.

docker run --name='mailcatcher' -d \
  --publish=1080:1080 \
  --publish=1025:1025 \
dockage/mailcatcher:0.8.2

Quick reference