Block a user
dkim-sender (0.1.5)
Published 2026-01-06 15:26:44 +13:00 by alanstockwell
Installation
docker pull git.stockwell.nz/alanstockwell/dkim-sender:0.1.5sha256:09bf61bf54aee1c4c0b43f4330029e78018011b4daad5f41b99bf62467eb8d44
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 rsyslog # 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 newaliases # buildkit |
| RUN /bin/sh -c mkdir /var/log/supervisor # buildkit |
| ENTRYPOINT ["/entrypoint.sh"] |
| CMD ["--nodaemon" "--configuration" "/etc/supervisord.conf"] |