dovecot/Dockerfile
Sebastian Hugentobler 9b41d69ebb Update Dockerfile
2016-11-01 15:11:03 +00:00

26 lines
748 B
Docker

FROM quay.io/thallian/confd-env:latest
RUN apk add --no-cache dovecot dovecot-ldap ssmtp g++ openldap-dev dovecot-dev make tar
RUN mkdir /tmp/pigeonhole
RUN wget -qO- http://pigeonhole.dovecot.org/releases/2.2/dovecot-2.2-pigeonhole-0.4.15.tar.gz | tar -xz -C /tmp/pigeonhole --strip 1
WORKDIR /tmp/pigeonhole
RUN ./configure --with-ldap=yes --with-dovecot=/usr/lib/dovecot
RUN make && make install
RUN rm -r /tmp/pigeonhole
WORKDIR /
RUN apk del g++ openldap-dev dovecot-dev make tar
RUN addgroup -g 1111 vmail
RUN adduser -u 1111 -h /var/lib/vmail -D -G vmail vmail
RUN mkdir /var/lib/vmail/sieve-after/
RUN chown vmail:vmail /var/lib/vmail/sieve-after/
EXPOSE 143 4190 6334 7777
VOLUME /var/lib/vmail/mail/ /etc/ssl/mail
ADD /rootfs /