https://github.com/instrumentisto/dovecot-docker-image
Dovecot MDA Docker Image
https://github.com/instrumentisto/dovecot-docker-image
docker-dovecot dovecot dovecot-docker
Last synced: about 1 year ago
JSON representation
Dovecot MDA Docker Image
- Host: GitHub
- URL: https://github.com/instrumentisto/dovecot-docker-image
- Owner: instrumentisto
- License: mit
- Created: 2017-06-01T13:29:27.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-11-06T05:51:03.000Z (over 7 years ago)
- Last Synced: 2025-03-29T19:41:50.332Z (about 1 year ago)
- Topics: docker-dovecot, dovecot, dovecot-docker
- Language: PHP
- Homepage: https://dovecot.org
- Size: 24.4 KB
- Stars: 10
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Dovecot Docker Image
====================
[](https://travis-ci.org/instrumentisto/dovecot-docker-image)
[](https://hub.docker.com/r/instrumentisto/dovecot)
## Supported tags and respective `Dockerfile` links
- `2.2.27.0`, `2.2.27`, `2.2`, `2`, `latest` [(debian/Dockerfile)][101]
- `2.2.27.0-alpine`, `2.2.27-alpine`, `2.2-alpine`, `2-alpine`, `alpine` [(alpine/Dockerfile)][102]
## What is Dovecot?
[Dovecot][10] is an open-source IMAP and POP3 server for Linux/UNIX-like systems, written primarily with security in mind. Timo Sirainen originated Dovecot and first released it in July 2002. Dovecot developers primarily aim to produce a lightweight, fast and easy-to-set-up open-source mailserver.
Dovecot is an excellent choice for both small and large installations. It's fast, simple to set up, requires no special administration and it uses very little memory.
> [dovecot.org](https://dovecot.org)

## How to use this image
To run Dovecot with default configuration simply do:
```bash
docker run -d -p 143:143 instrumentisto/dovecot
```
To see default configuration just run:
```bash
docker run --rm instrumentisto/dovecot doveconf
```
To reconfigure Dovecot add/replace drop-in files in `/etc/dovecot/conf.d/` directory inside container, or just specify your own `/etc/dovecot/dovecot.conf` file:
```bash
docker run -d -p 143:143 -v /my/dovecot.cnf:/etc/dovecot/dovecot.conf instrumentisto/dovecot
```
## Image versions
### `X`
Latest version of `X` Dovecot major version.
### `X.Y`
Latest version of `X.Y` Dovecot minor version.
### `X.Y.Z`
Concrete `X.Y.Z` version of Dovecot with latest updates applied.
### `X.Y.Z.P`
Concrete `X.Y.Z` version of Dovecot with `P` update applied.
### `alpine`
This image is based on the popular [Alpine Linux project][1], available in [the alpine official image][2]. Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
This variant is highly recommended when final image size being as small as possible is desired. The main caveat to note is that it does use [musl libc][4] instead of [glibc and friends][5], so certain software might run into issues depending on the depth of their libc requirements. However, most software doesn't have an issue with this, so this variant is usually a very safe choice. See [this Hacker News comment thread][6] for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.
## License
Dovecot itself is licensed under [LGPLv2.1][93] and [MIT][94] licenses (see [details][92]).
Dovecot Docker image is licensed under [MIT license][91].
## Issues
We can't notice comments in the DockerHub so don't use them for reporting issue or asking question.
If you have any problems with or questions about this image, please contact us through a [GitHub issue][3].
[1]: http://alpinelinux.org
[2]: https://hub.docker.com/_/alpine
[3]: https://github.com/instrumentisto/dovecot-docker-image/issues
[4]: http://www.musl-libc.org
[5]: http://www.etalabs.net/compare_libcs.html
[6]: https://news.ycombinator.com/item?id=10782897
[10]: https://en.wikipedia.org/wiki/Dovecot_(software)
[91]: https://github.com/instrumentisto/dovecot-docker-image/blob/master/LICENSE.md
[92]: https://www.dovecot.org/doc/COPYING
[93]: https://www.dovecot.org/doc/COPYING.LGPL
[94]: https://www.dovecot.org/doc/COPYING.MIT
[101]: https://github.com/instrumentisto/dovecot-docker-image/blob/master/debian/Dockerfile
[102]: https://github.com/instrumentisto/dovecot-docker-image/blob/master/alpine/Dockerfile