You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
598 B

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. # mailcatcher
  2. Extra small mailcatcher image (261.9 MB)
  3. ## Usage
  4. ```sh
  5. $ docker run -d -p 1080:1080 -p 1025:1025 --name mailcatcher schickling/mailcatcher
  6. ```
  7. Link the container to another container and use the mailcatcher SMTP port `1025` via a ENV variable like `$MAILCATCHER_PORT_1025_TCP_ADDR`.
  8. ## HTTP Path Support
  9. You can run the web interface under a different root by specifying the environmental variable HTTPPATH. This can be used if you're proxying the incoming connection.
  10. ```sh
  11. $ docker run -d -p 1080:1080 -e HTTPPATH="mailcatcher" --name mailcatcher schickling/mailcatcher
  12. ```