Block a user
dkim-sender (0.1.1)
Published 2025-12-24 00:00:16 +13:00 by alanstockwell
Installation
docker pull git.stockwell.nz/alanstockwell/dkim-sender:0.1.1sha256:e7adfc6b4f932072c7e12828f973b488a203f624e0d59881f772b9cb8fd491db
Image Layers
| ADD alpine-minirootfs-3.23.2-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| RUN /bin/sh -c apk update && apk add --no-cache supervisor postfix opendkim opendkim-utils nano # buildkit |
| COPY entrypoint.sh /entrypoint.sh # buildkit |
| COPY ./etc/postifx/main.cf /etc/postfix/main.cf # buildkit |
| COPY ./etc/opendkim/opendkim.conf /etc/opendkim/opendkim.conf # buildkit |
| COPY ./etc/opendkim/trusted.hosts /etc/opendkim/trusted.hosts # buildkit |
| COPY ./etc/supervisor.d/*.ini /etc/supervisor.d/ # buildkit |
| RUN /bin/sh -c chmod +x /entrypoint.sh # buildkit |
| RUN /bin/sh -c mkdir /etc/opendkim/keys && chmod go-rw /etc/opendkim/keys && touch /etc/opendkim/signing.table && touch /etc/opendkim/key.table && chown -R opendkim:opendkim /etc/opendkim && addgroup postfix opendkim # buildkit |
| RUN /bin/sh -c mkdir /var/log/supervisor # buildkit |
| ENTRYPOINT ["/entrypoint.sh"] |
| CMD ["--nodaemon" "--configuration" "/etc/supervisord.conf"] |