diff --git a/Dockerfile b/Dockerfile index 067c6d1..b137293 100644 --- a/Dockerfile +++ b/Dockerfile @@ -91,9 +91,13 @@ RUN mkdir -p \ RUN touch /etc/opendkim/KeyTable /etc/opendkim/SigningTable /etc/opendkim/TrustedHosts \ && chown opendkim:opendkim /etc/opendkim/KeyTable /etc/opendkim/SigningTable /etc/opendkim/TrustedHosts +RUN touch /etc/rsyslog.d/stdout.conf && \ + echo "*.* /dev/stdout" > /etc/rsyslog.d/stdout.conf + COPY entrypoint.sh /usr/local/bin/entrypoint.sh RUN chmod +x /usr/local/bin/entrypoint.sh + EXPOSE 8891 ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]