diff options
author | Malfurious <m@lfurio.us> | 2024-07-05 05:53:38 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-07-09 15:50:39 -0400 |
commit | 5d6a5e19976923daccf0464f797b44b6266e6941 (patch) | |
tree | 9a673efd6e5d9cea95d40c98d5ff33eaba628731 | |
parent | add7158e2817dbfbf4d46766dd4200061416d05b (diff) | |
download | mailnode-5d6a5e19976923daccf0464f797b44b6266e6941.tar.gz mailnode-5d6a5e19976923daccf0464f797b44b6266e6941.zip |
opendkim: Start milter service
Signed-off-by: Malfurious <m@lfurio.us>
-rw-r--r-- | docker-compose.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 69ac500..0efa133 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -56,6 +56,15 @@ services: - "mlmmj:/var/spool/mlmmj" command: ["bash", "-c", "/usr/bin/mlmmj-maintd -d /var/spool/mlmmj && sleep infinity"] + opendkim: + image: "mailnode" + pull_policy: "never" + + restart: "always" + volumes: + - "dkim:/opendkim" + command: ["/usr/sbin/opendkim", "-f"] + volumes: certs: external: true |