Skip to content

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

License

Notifications You must be signed in to change notification settings

dockage/mailcatcher

Repository files navigation

MailCatcher CI 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.9.0

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.9.0

Quick reference