Mailu 2.0
This commit is contained in:
24
compose.yml
24
compose.yml
@ -2,7 +2,7 @@ version: "3.8"
|
||||
|
||||
x-environment:
|
||||
&default-env
|
||||
- HOST_FRONT=${STACK_NAME}_app
|
||||
- FRONT_ADDRESS=${STACK_NAME}_app
|
||||
- ADMIN
|
||||
- ANTIVIRUS
|
||||
- AUTH_RATELIMIT_IP
|
||||
@ -51,7 +51,7 @@ x-environment:
|
||||
|
||||
services:
|
||||
app:
|
||||
image: ghcr.io/mailu/nginx:1.9
|
||||
image: ghcr.io/mailu/nginx:2.0.16
|
||||
logging:
|
||||
driver: json-file
|
||||
networks:
|
||||
@ -91,39 +91,47 @@ services:
|
||||
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
||||
- "coop-cloud.${STACK_NAME}.version=0.2.1+1.9"
|
||||
|
||||
|
||||
db:
|
||||
image: redis:alpine
|
||||
volumes:
|
||||
- "redis:/data"
|
||||
|
||||
admin:
|
||||
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}admin:1.9
|
||||
image: ghcr.io/mailu/admin:2.0.16
|
||||
environment: *default-env
|
||||
healthcheck:
|
||||
disable: true
|
||||
volumes:
|
||||
- "dkim:/dkim"
|
||||
- "mailu:/data"
|
||||
networks:
|
||||
- default
|
||||
|
||||
imap:
|
||||
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}dovecot:1.9
|
||||
image: ghcr.io/mailu/dovecot:2.0.16
|
||||
environment: *default-env
|
||||
volumes:
|
||||
- "mail:/mail"
|
||||
healthcheck:
|
||||
disable: true
|
||||
depends_on:
|
||||
- app
|
||||
networks:
|
||||
- default
|
||||
|
||||
smtp:
|
||||
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}postfix:1.9
|
||||
image: ghcr.io/mailu/postfix:2.0.16
|
||||
environment: *default-env
|
||||
volumes:
|
||||
- "mailqueue:/queue"
|
||||
healthcheck:
|
||||
disable: true
|
||||
depends_on:
|
||||
- app
|
||||
|
||||
antispam:
|
||||
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}rspamd:1.9
|
||||
image: ghcr.io/mailu/rspamd:2.0.16
|
||||
environment: *default-env
|
||||
volumes:
|
||||
- "rspamd:/var/lib/rspamd"
|
||||
@ -132,7 +140,7 @@ services:
|
||||
disable: true
|
||||
|
||||
webmail:
|
||||
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}rainloop:1.9
|
||||
image: ghcr.io/mailu/webmail:2.0.16
|
||||
environment: *default-env
|
||||
networks:
|
||||
- default
|
||||
|
||||
Reference in New Issue
Block a user