1
0
Fork 0

Implement docker-compose setup for CAcert software

This commit is contained in:
Jan Dittberner 2020-12-20 14:52:15 +01:00 committed by Jan Dittberner
commit 279dbcffbf
17 changed files with 642 additions and 0 deletions

15
imap.Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM debian:buster
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
ca-certificates \
curl \
dovecot-imapd \
psmisc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 25
COPY docker/start-postfix.sh /usr/local