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 897B

123456789101112131415161718192021222324252627282930313233343536373839
  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 ./exim4/ /etc/exim4/
  10. RUN chown root:Debian-exim /etc/exim4/passwd.client &&\
  11. update-exim4.conf
  12. RUN rm -rf /var/log/* &&\
  13. mkdir -p /var/log/exim4/ &&\
  14. ln -s /dev/stdout /var/log/exim4/mainlog &&\
  15. ln -s /dev/stderr /var/log/exim4/paniclog
  16. COPY ./sieve/ /etc/dovecot/sieve/
  17. COPY ./vars-vars /etc/vars-vars
  18. COPY ./vars-files /etc/vars-files
  19. COPY ./run.sh /run.sh
  20. VOLUME ["/var/email"]
  21. EXPOSE 110 143 993 995 4190
  22. CMD ["/run.sh"]
  23. COPY ./certs/ /etc/ssl/private/