diff options
author | Quentin <quentin@dufour.io> | 2024-01-08 10:39:15 +0000 |
---|---|---|
committer | Quentin <quentin@dufour.io> | 2024-01-08 10:39:15 +0000 |
commit | 42a54b2c500294c594f3efdd25db28c18f5ac238 (patch) | |
tree | e43a11753472f1917ce4aa6ddba24ae3a513bd50 /tests/instrumentation/docker/maddy | |
parent | 72f9a221ed2318d8ca3452b6574c900be923d3d5 (diff) | |
parent | 152d5b7604337fe19a7aea7fc37b3d4615ca7393 (diff) | |
download | aerogramme-42a54b2c500294c594f3efdd25db28c18f5ac238.tar.gz aerogramme-42a54b2c500294c594f3efdd25db28c18f5ac238.zip |
Merge branch 'main' into feat/search
Diffstat (limited to 'tests/instrumentation/docker/maddy')
-rw-r--r-- | tests/instrumentation/docker/maddy/Dockerfile | 2 | ||||
-rwxr-xr-x | tests/instrumentation/docker/maddy/entrypoint.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/instrumentation/docker/maddy/Dockerfile b/tests/instrumentation/docker/maddy/Dockerfile index 341e398..a110e16 100644 --- a/tests/instrumentation/docker/maddy/Dockerfile +++ b/tests/instrumentation/docker/maddy/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /root RUN apt-get update && apt-get install -y openssl && \ openssl req -nodes -new -x509 -subj "/C=DW/ST=Sto/L=Ankh-Morpork /O=Unseen University/OU=Library/CN=Ook/emailAddress=ook@ook.ook" -keyout privkey.pem -out fullchain.pem -FROM foxcpp/maddy:0.6.2 +FROM foxcpp/maddy:0.7.0 COPY --from=builder /root/privkey.pem /data/tls/privkey.pem COPY --from=builder /root/fullchain.pem /data/tls/fullchain.pem diff --git a/tests/instrumentation/docker/maddy/entrypoint.sh b/tests/instrumentation/docker/maddy/entrypoint.sh index f875624..e42a34a 100755 --- a/tests/instrumentation/docker/maddy/entrypoint.sh +++ b/tests/instrumentation/docker/maddy/entrypoint.sh @@ -3,7 +3,7 @@ maddy -config /data/maddy.conf run & sleep 2 -maddyctl creds create --password pass test@example.com -maddyctl imap-acct create test@example.com +maddy creds create --password pass test@example.com +maddy imap-acct create test@example.com wait |