docker-dovecot/Dockerfile
Pierre-Olivier Mercier 3ff0c6e8bb
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Initial commit, from playbooks
2024-02-12 16:25:16 +01:00

10 lines
288 B
Docker

FROM alpine:3
RUN apk add --no-cache tini ca-certificates dovecot dovecot-ldap dovecot-lmtpd dovecot-pigeonhole-plugin dovecot-pop3d python3
ADD dovecot.conf /etc/dovecot/dovecot.conf
VOLUME ["/etc/dovecot", "/srv/mail"]
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["/usr/sbin/dovecot", "-F"]