We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2583066 commit 9111ef8Copy full SHA for 9111ef8
dovecot/Dockerfile
@@ -5,7 +5,16 @@ ARG DOVECOT_UID=4006
5
ARG DOVECOT_GID=4006
6
ARG VMAIL_UID=4007
7
ARG VMAIL_GID=4007
8
-RUN apt-get update && apt-get install -qy dovecot-core dovecot-imapd dovecot-pop3d
+RUN apt-get update && \
9
+ apt-get install -qy \
10
+ dovecot-core \
11
+ dovecot-imapd \
12
+ dovecot-pop3d \
13
+ dovecot-lmtpd \
14
+ dovecot-sieve \
15
+ dovecot-managesieved \
16
+ dovecot-ldap \
17
+ dovecot-antispam
18
19
RUN groupadd -g ${VMAIL_GID} vmail && \
20
useradd -u $VMAIL_UID -g vmail -s /bin/false vmail && \
0 commit comments