Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 1.32 KB

README.md

File metadata and controls

24 lines (15 loc) · 1.32 KB

rordi/docker-mailcatcher

A lightweight Docker image with mailcatcher. The smallest mailcatcher Docker image to date with just 12 MB compressed / 31.3 MB uncompressed.

You can pull the image from the Docker registry and run with:

docker run -d -p 1080:1080 --name mailcatcher rordi/docker-mailcatcher 

To install the image into your network with docker-compose, simply add the following lines to your docker-compose.yml and adjust the network id:

mailcatcher:
  image: rordi/docker-mailcatcher
  container_name: mailcatcher
  ports:
    - 1080:1080
  networks:
   - yournetworkid

Finally, confiugure your application to use the Mailcatcher SMTP on port 1025, e.g. host: mailcatcher:1025. You can access the catched emails on the web GUI via http://localhost:1080.

Please refer to the mailcatcher website for more information.