12345678910111213141516171819202122232425262728 |
- FROM debian:jessie
-
- MAINTAINER Robin Thoni <robin@rthoni.com>
-
- RUN groupadd -r email --gid=7788 && useradd -r -g email --uid=7788 email
-
- RUN apt-get update &&\
- apt-get install -y dovecot-imapd dovecot-pop3d dovecot-sieve dovecot-managesieved dovecot-pgsql dovecot-lmtpd exim4 &&\
- apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
-
- RUN rm -rf /etc/dovecot/*
-
- COPY ./config/ /etc/dovecot/
-
- COPY ./certs/ /etc/ssl/private/
-
- COPY ./exim4/ /etc/exim4/
-
- RUN chown root:Debian-exim /etc/exim4/passwd.client &&\
- update-exim4.conf
-
- COPY ./run.sh /run.sh
-
- VOLUME ["/var/email", "/etc/dovecot/sieve"]
-
- EXPOSE 110 143 993 995 4190
-
- CMD ["/run.sh"]
|