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

123456789101112131415161718192021222324
  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 &&\
  6. apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  7. COPY ./run.sh /run.sh
  8. RUN rm -rf /etc/dovecot/*
  9. COPY ./config/ /etc/dovecot/
  10. COPY ./certs/ /etc/ssl/private/
  11. VOLUME ["/var/email"]
  12. EXPOSE 110 143 993 995 4190
  13. CMD ["/run.sh"]