https://github.com/hausgold/docker-mailcatcher
mDNS enabled schickling/mailcatcher image
https://github.com/hausgold/docker-mailcatcher
docker docker-image mailcatcher mdns oss zeroconf
Last synced: 29 days ago
JSON representation
mDNS enabled schickling/mailcatcher image
- Host: GitHub
- URL: https://github.com/hausgold/docker-mailcatcher
- Owner: hausgold
- License: mit
- Created: 2017-08-03T10:28:58.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-13T19:41:42.000Z (over 1 year ago)
- Last Synced: 2025-01-04T15:34:54.443Z (over 1 year ago)
- Topics: docker, docker-image, mailcatcher, mdns, oss, zeroconf
- Language: Shell
- Homepage: https://hub.docker.com/r/hausgold/mailcatcher/
- Size: 229 KB
- Stars: 0
- Watchers: 14
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://github.com/hausgold/docker-mailcatcher/actions/workflows/package.yml)
[](https://github.com/hausgold/docker-mailcatcher)
[](https://hub.docker.com/r/hausgold/mailcatcher/)
This Docker images provides the [schickling/mailcatcher](https://hub.docker.com/r/schickling/mailcatcher/) image as base
with the mDNS/ZeroConf stack on top. So you can enjoy the great
[mailcatcher](https://mailcatcher.me/) app, which is accessible by default as *mailcatcher.local*.
- [Requirements](#requirements)
- [Getting starting](#getting-starting)
- [docker-compose usage example](#docker-compose-usage-example)
- [Host configs](#host-configs)
- [Configure a different mDNS hostname](#configure-a-different-mdns-hostname)
- [Other top level domains](#other-top-level-domains)
- [How it looks](#how-it-looks)
- [Further reading](#further-reading)
## Requirements
* Host enabled Avahi daemon
* Host enabled mDNS NSS lookup
## Getting starting
You just need to run it like that, to get a working mailcatcher:
```bash
$ docker run --rm hausgold/mailcatcher
```
The port 1080 is proxied by haproxy to port 80 to make *mailcatcher.local*
directly accessible. The port 1025 is untouched.
## docker-compose usage example
```yaml
services:
mailcatcher:
image: hausgold/mailcatcher
environment:
# Mind the .local suffix
MDNS_HOSTNAME: mailcatcher.test.local
```
## Host configs
Install the nss-mdns package, enable and start the avahi-daemon.service. Then,
edit the file /etc/nsswitch.conf and change the hosts line like this:
```bash
hosts: ... mdns4_minimal [NOTFOUND=return] resolve [!UNAVAIL=return] dns ...
```
## Configure a different mDNS hostname
The magic environment variable is *MDNS_HOSTNAME*. Just pass it like that to
your docker run command:
```bash
$ docker run --rm -e MDNS_HOSTNAME=something.else.local hausgold/mailcatcher
```
This will result in *something.else.local*.
You can also configure multiple aliases (CNAME's) for your container by
passing the *MDNS_CNAMES* environment variable. It will register all the comma
separated domains as aliases for the container, next to the regular mDNS
hostname.
```bash
$ docker run --rm \
-e MDNS_HOSTNAME=something.else.local \
-e MDNS_CNAMES=nothing.else.local,special.local \
hausgold/mailcatcher
```
This will result in *something.else.local*, *nothing.else.local* and
*special.local*.
## Other top level domains
By default *.local* is the default mDNS top level domain. This images does not
force you to use it. But if you do not use the default *.local* top level
domain, you need to [configure your host avahi][custom_mdns] to accept it.
## How it looks

## Further reading
* Docker/mDNS demo: https://github.com/Jack12816/docker-mdns
* Archlinux howto: https://wiki.archlinux.org/index.php/avahi
* Ubuntu/Debian howto: https://wiki.ubuntuusers.de/Avahi/
[custom_mdns]: https://wiki.archlinux.org/index.php/avahi#Configuring_mDNS_for_custom_TLD