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.

Dockerfile 674B

123456789101112131415161718192021222324252627282930
  1. FROM debian:jessie
  2. MAINTAINER Robin Thoni <robin@rthoni.com>
  3. RUN groupadd -r email --gid=7788 && useradd -r -g email --uid=7788 email
  4. RUN apt-get update &&\
  5. apt-get install -y dovecot-imapd dovecot-pop3d dovecot-sieve dovecot-managesieved dovecot-pgsql dovecot-lmtpd exim4 &&\
  6. apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  7. RUN rm -rf /etc/dovecot/*
  8. COPY ./config/ /etc/dovecot/
  9. COPY ./certs/ /etc/ssl/private/
  10. COPY ./exim4/ /etc/exim4/
  11. RUN chown root:Debian-exim /etc/exim4/passwd.client &&\
  12. update-exim4.conf
  13. COPY ./sieve/ /etc/dovecot/sieve/
  14. COPY ./run.sh /run.sh
  15. VOLUME ["/var/email"]
  16. EXPOSE 110 143 993 995 4190
  17. CMD ["/run.sh"]