chore: publish 1.1.0+2.0.34 release

This commit is contained in:
knoflook 2023-11-27 13:46:28 +01:00
parent 2cd5446ca2
commit 976b85b701
2 changed files with 26 additions and 8 deletions

View File

@ -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

18
release/1.1.0+2.0.34 Normal file
View File

@ -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 <your mailu app> secret_key v1 <SECRETKEYHERE>`
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`