mailcow dockerized
This commit is contained in:
16
data/Dockerfiles/rspamd/Dockerfile
Normal file
16
data/Dockerfiles/rspamd/Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
FROM debian:jessie
|
||||
MAINTAINER Andre Peters <andre.peters@debinux.de>
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y wget \
|
||||
&& wget -O- https://rspamd.com/apt-stable/gpg.key | apt-key add - \
|
||||
&& echo "deb http://rspamd.com/apt-stable/ jessie main" > /etc/apt/sources.list.d/rspamd.list \
|
||||
&& echo "deb-src http://rspamd.com/apt-stable/ jessie main" >> /etc/apt/sources.list.d/rspamd.list \
|
||||
&& apt-get update \
|
||||
&& apt-get --no-install-recommends -y --force-yes install rspamd
|
||||
|
||||
CMD ["/usr/bin/rspamd","-f", "-u", "_rspamd", "-g", "_rspamd"]
|
||||
|
||||
USER _rspamd
|
||||
|
||||
EXPOSE 11333 11334
|
Reference in New Issue
Block a user