deployment stuff
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed

This commit is contained in:
2026-02-19 12:40:34 +01:00
parent 148efd96a5
commit a19e4a8c1f
4 changed files with 117 additions and 7 deletions

View File

@@ -4,15 +4,14 @@ LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
LABEL ImageName=""
RUN \
apk add --no-cache exim
apk add --no-cache syslog-ng
COPY exim.conf /etc/exim
RUN chmod 644 /etc/exim/exim.conf
COPY syslog-ng.conf /etc/syslog-ng
RUN mkdir -p /var/log/remote
WORKDIR /etc/exim
VOLUME /var/log/remote
EXPOSE 514/UDP
EXPOSE 25
CMD [ "/usr/sbin/exim", "-bdf", "-q15m", "-v" ]
CMD [ "/usr/sbin/syslog-ng", "-f", "/etc/syslog-ng/syslog-ng.conf", "-F" ]