2021-12-14 21:10:31 +08:00
|
|
|
FROM alpine:3.15
|
2021-02-18 15:48:12 +08:00
|
|
|
|
2017-10-06 05:38:33 +08:00
|
|
|
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
|
|
|
|
|
2019-05-21 03:27:47 +08:00
|
|
|
WORKDIR /app
|
|
|
|
|
2021-02-18 15:48:12 +08:00
|
|
|
RUN apk add --update --no-cache python3 \
|
|
|
|
py3-pip \
|
|
|
|
openssl \
|
|
|
|
tzdata \
|
|
|
|
&& pip3 install --upgrade pip \
|
|
|
|
docker \
|
|
|
|
flask \
|
|
|
|
flask-restful
|
2017-10-06 05:38:33 +08:00
|
|
|
|
2019-10-18 18:01:47 +08:00
|
|
|
COPY dockerapi.py /app/
|
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
|
|
|
|
2019-10-18 18:01:47 +08:00
|
|
|
CMD ["python3", "-u", "/app/dockerapi.py"]
|