1
0
Fork 0

Add test mgr setup

This commit is contained in:
Jan Dittberner 2020-12-22 08:49:18 +01:00
parent 8e7f8c3d46
commit 30ddadd954
14 changed files with 345 additions and 64 deletions

23
mail.Dockerfile Normal file
View file

@ -0,0 +1,23 @@
FROM debian:buster
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
ca-certificates \
curl \
dovecot-imapd \
dumb-init \
mutt \
psmisc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 143
RUN adduser --uid 1000 --gecos "catchall mailbox" --disabled-password catchall
VOLUME /home/catchall/Maildir
COPY docker/run-dovecot /usr/local/bin/run-dovecot
CMD ["dumb-init", "/usr/local/bin/run-dovecot"]