You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
docker-haraka/Dockerfile

52 lines
1.5 KiB

FROM node:latest
LABEL org.label-schema.usage="https://code.r3pek.org/r3pek/docker-haraka/raw/branch/master/README.md"
ENV HOSTNAME=${HOSTNAME:-haraka.localdomain}
ENV EMAIL=${EMAIL:-test@email.tld}
ENV USE_LETSENCRYPT=${USE_LETSENCRYPT:-false}
RUN echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/sources.list && \
apt-get update && apt-get upgrade -y && apt-get -t jessie-backports install -y supervisor certbot cron git && \
mkdir /var/log/supervisord && \
mkdir /var/run/supervisord && \
groupadd -r haraka && \
useradd --comment "Haraka Server User" \
--home /haraka \
--shell /bin/false \
--gid haraka \
-r \
-m \
haraka \
&& chown -R haraka:haraka /haraka
COPY haraka.sh /haraka.sh
COPY supervisord.conf /etc/supervisor/supervisord.conf
COPY certbot-renew.sh /etc/cron.daily/certbot-renew.sh
RUN chmod +x /haraka.sh /etc/cron.daily/certbot-renew.sh
# Install and Haraka and it's plugins
USER node
ENV NPM_CONFIG_PREFIX=/home/node/.npm-global
ENV PATH=$PATH:/home/node/.npm-global/bin
RUN npm -g install \
Haraka \
haraka-net-utils \
haraka-plugin-rspamd \
haraka-plugin-rcpt-ldap \
https://github.com/haraka/haraka-plugin-auth-ldap.git
USER root
RUN apt-get -y autoremove git && \
rm -rf /var/lib/apt/lists/*
# Port 80 is used for LetsEncrypt
EXPOSE 25 80 587
VOLUME /haraka
VOLUME /etc/letsencrypt
ENTRYPOINT ["/usr/bin/supervisord", "-c", "/etc/supervisor/supervisord.conf"]