chore: publish 1.1.0+2.0.34 release
This commit is contained in:
16
compose.yml
16
compose.yml
@ -54,7 +54,7 @@ x-environment:
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: ghcr.io/mailu/nginx:2.0.23
|
image: ghcr.io/mailu/nginx:2.0.34
|
||||||
logging:
|
logging:
|
||||||
driver: json-file
|
driver: json-file
|
||||||
networks:
|
networks:
|
||||||
@ -95,15 +95,15 @@ services:
|
|||||||
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
|
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
|
||||||
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||||
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
- "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:
|
db:
|
||||||
image: redis:7.2.0-alpine
|
image: redis:7.2.3-alpine
|
||||||
volumes:
|
volumes:
|
||||||
- "redis:/data"
|
- "redis:/data"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
image: ghcr.io/mailu/admin:2.0.23
|
image: ghcr.io/mailu/admin:2.0.34
|
||||||
environment: *default-env
|
environment: *default-env
|
||||||
healthcheck:
|
healthcheck:
|
||||||
disable: true
|
disable: true
|
||||||
@ -116,7 +116,7 @@ services:
|
|||||||
- default
|
- default
|
||||||
|
|
||||||
imap:
|
imap:
|
||||||
image: ghcr.io/mailu/dovecot:2.0.23
|
image: ghcr.io/mailu/dovecot:2.0.34
|
||||||
environment: *default-env
|
environment: *default-env
|
||||||
secrets:
|
secrets:
|
||||||
- secret_key
|
- secret_key
|
||||||
@ -130,7 +130,7 @@ services:
|
|||||||
- default
|
- default
|
||||||
|
|
||||||
smtp:
|
smtp:
|
||||||
image: ghcr.io/mailu/postfix:2.0.23
|
image: ghcr.io/mailu/postfix:2.0.34
|
||||||
environment: *default-env
|
environment: *default-env
|
||||||
secrets:
|
secrets:
|
||||||
- secret_key
|
- secret_key
|
||||||
@ -142,7 +142,7 @@ services:
|
|||||||
- app
|
- app
|
||||||
|
|
||||||
antispam:
|
antispam:
|
||||||
image: ghcr.io/mailu/rspamd:2.0.23
|
image: ghcr.io/mailu/rspamd:2.0.34
|
||||||
environment: *default-env
|
environment: *default-env
|
||||||
secrets:
|
secrets:
|
||||||
- secret_key
|
- secret_key
|
||||||
@ -153,7 +153,7 @@ services:
|
|||||||
disable: true
|
disable: true
|
||||||
|
|
||||||
webmail:
|
webmail:
|
||||||
image: ghcr.io/mailu/webmail:2.0.23
|
image: ghcr.io/mailu/webmail:2.0.34
|
||||||
environment: *default-env
|
environment: *default-env
|
||||||
networks:
|
networks:
|
||||||
- default
|
- default
|
||||||
|
|||||||
18
release/1.1.0+2.0.34
Normal file
18
release/1.1.0+2.0.34
Normal 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`
|
||||||
Reference in New Issue
Block a user