From 976b85b701f0248ae78545566d172d71048d5001 Mon Sep 17 00:00:00 2001 From: knoflook Date: Mon, 27 Nov 2023 13:46:28 +0100 Subject: [PATCH] chore: publish 1.1.0+2.0.34 release --- compose.yml | 16 ++++++++-------- release/1.1.0+2.0.34 | 18 ++++++++++++++++++ 2 files changed, 26 insertions(+), 8 deletions(-) create mode 100644 release/1.1.0+2.0.34 diff --git a/compose.yml b/compose.yml index b0c26f2..261bc2a 100644 --- a/compose.yml +++ b/compose.yml @@ -54,7 +54,7 @@ x-environment: services: app: - image: ghcr.io/mailu/nginx:2.0.23 + image: ghcr.io/mailu/nginx:2.0.34 logging: driver: json-file networks: @@ -95,15 +95,15 @@ services: - "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)" - "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}" - "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure" - - "coop-cloud.${STACK_NAME}.version=1.0.2+2.0.23" + - "coop-cloud.${STACK_NAME}.version=1.1.0+2.0.34" db: - image: redis:7.2.0-alpine + image: redis:7.2.3-alpine volumes: - "redis:/data" admin: - image: ghcr.io/mailu/admin:2.0.23 + image: ghcr.io/mailu/admin:2.0.34 environment: *default-env healthcheck: disable: true @@ -116,7 +116,7 @@ services: - default imap: - image: ghcr.io/mailu/dovecot:2.0.23 + image: ghcr.io/mailu/dovecot:2.0.34 environment: *default-env secrets: - secret_key @@ -130,7 +130,7 @@ services: - default smtp: - image: ghcr.io/mailu/postfix:2.0.23 + image: ghcr.io/mailu/postfix:2.0.34 environment: *default-env secrets: - secret_key @@ -142,7 +142,7 @@ services: - app antispam: - image: ghcr.io/mailu/rspamd:2.0.23 + image: ghcr.io/mailu/rspamd:2.0.34 environment: *default-env secrets: - secret_key @@ -153,7 +153,7 @@ services: disable: true webmail: - image: ghcr.io/mailu/webmail:2.0.23 + image: ghcr.io/mailu/webmail:2.0.34 environment: *default-env networks: - default diff --git a/release/1.1.0+2.0.34 b/release/1.1.0+2.0.34 new file mode 100644 index 0000000..84152b7 --- /dev/null +++ b/release/1.1.0+2.0.34 @@ -0,0 +1,18 @@ +# Secret key + +The secret key is now stored as a docker secret instead of a variable in the +env file. You need to insert it by running: +`abra app secret insert secret_key v1 ` +and you can remove `SECRET_KEY` from your config file. + +# `DOMAIN` is now `MAIL_DOMAIN` + +This is important! If your main e-mail domain is something else than the +domain you are reaching the web interface at, you need to make changes. +I.e. in our setup we have `autonomic.zone` pointing an A record at some server +and `mail.autonomic.zone` is a separate server, and MX records are pointing +to the server at `mail.autonomic.zone`. +In this case: + - `DOMAIN` should be `mail.autonomic.zone` - this is what traefik will use to + provision a certificate + - `MAIL_DOMAIN` should be `autonomic.zone`