2018-04-22 11:53:18 +02:00
|
|
|
{% set env='mailu.env' %}
|
|
|
|
# This file is auto-generated by the Mailu configuration wizard.
|
|
|
|
# Please read the documentation before attempting any change.
|
2018-10-18 16:23:25 +02:00
|
|
|
# Generated for {{ flavor }} flavor
|
2018-04-22 11:53:18 +02:00
|
|
|
|
2019-01-17 16:24:52 +02:00
|
|
|
version: '2.2'
|
2018-04-22 11:53:18 +02:00
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
# External dependencies
|
|
|
|
redis:
|
|
|
|
image: redis:alpine
|
2018-10-22 14:13:18 +02:00
|
|
|
restart: always
|
2018-04-22 11:53:18 +02:00
|
|
|
volumes:
|
2018-10-16 10:09:42 +02:00
|
|
|
- "{{ root }}/redis:/data"
|
2022-01-06 13:48:35 +02:00
|
|
|
{% if resolver_enabled %}
|
|
|
|
depends_on:
|
|
|
|
- resolver
|
|
|
|
dns:
|
|
|
|
- {{ dns }}
|
|
|
|
{% endif %}
|
2021-12-01 17:59:47 +02:00
|
|
|
|
2018-04-22 11:53:18 +02:00
|
|
|
# Core services
|
|
|
|
front:
|
2023-03-16 19:38:25 +02:00
|
|
|
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}nginx:${MAILU_VERSION:-{{ version }}}
|
2018-10-22 14:13:18 +02:00
|
|
|
restart: always
|
2018-04-22 11:53:18 +02:00
|
|
|
env_file: {{ env }}
|
2018-10-22 14:13:18 +02:00
|
|
|
logging:
|
2023-04-02 17:08:30 +02:00
|
|
|
driver: journald
|
|
|
|
options:
|
2023-04-02 17:24:34 +02:00
|
|
|
tag: mailu-front
|
2018-04-22 11:53:18 +02:00
|
|
|
ports:
|
|
|
|
{% for port in (80, 443, 25, 465, 587, 110, 995, 143, 993) %}
|
|
|
|
{% if bind4 %}
|
2018-10-16 11:34:55 +02:00
|
|
|
- "{{ bind4 }}:{{ port }}:{{ port }}"
|
2018-04-22 11:53:18 +02:00
|
|
|
{% endif %}
|
2021-02-12 13:18:22 +02:00
|
|
|
{% if ipv6_enabled and bind6 %}
|
2023-01-25 15:05:42 +02:00
|
|
|
- "[{{ bind6 }}]:{{ port }}:{{ port }}"
|
2018-04-22 11:53:18 +02:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2023-01-04 16:03:47 +02:00
|
|
|
networks:
|
|
|
|
- default
|
2023-04-02 17:01:25 +02:00
|
|
|
{% if webmail_type != 'none' %}
|
2023-01-04 16:03:47 +02:00
|
|
|
- webmail
|
2023-04-02 17:01:25 +02:00
|
|
|
{% endif %}
|
|
|
|
{% if webdav_enabled %}
|
2023-03-28 22:01:43 +02:00
|
|
|
- radicale
|
2023-04-02 17:01:25 +02:00
|
|
|
{% endif %}
|
2018-04-22 11:53:18 +02:00
|
|
|
volumes:
|
2018-10-16 10:09:42 +02:00
|
|
|
- "{{ root }}/certs:/certs"
|
2020-04-11 14:34:50 +02:00
|
|
|
- "{{ root }}/overrides/nginx:/overrides:ro"
|
2022-01-06 10:42:59 +02:00
|
|
|
{% if resolver_enabled %}
|
2022-01-06 13:48:35 +02:00
|
|
|
depends_on:
|
2022-01-06 10:42:59 +02:00
|
|
|
- resolver
|
|
|
|
dns:
|
|
|
|
- {{ dns }}
|
2018-12-07 15:29:33 +02:00
|
|
|
|
2018-10-23 14:42:19 +02:00
|
|
|
resolver:
|
2023-03-16 19:38:25 +02:00
|
|
|
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}unbound:${MAILU_VERSION:-{{ version }}}
|
2018-10-23 15:39:22 +02:00
|
|
|
env_file: {{ env }}
|
2018-10-23 14:42:19 +02:00
|
|
|
restart: always
|
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
ipv4_address: {{ dns }}
|
2022-01-06 10:42:59 +02:00
|
|
|
{% endif %}
|
2018-04-22 11:53:18 +02:00
|
|
|
|
|
|
|
admin:
|
2023-03-16 19:38:25 +02:00
|
|
|
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}admin:${MAILU_VERSION:-{{ version }}}
|
2018-10-22 14:13:18 +02:00
|
|
|
restart: always
|
2018-04-22 11:53:18 +02:00
|
|
|
env_file: {{ env }}
|
2023-04-02 17:08:30 +02:00
|
|
|
logging:
|
|
|
|
driver: journald
|
|
|
|
options:
|
2023-04-02 17:24:34 +02:00
|
|
|
tag: mailu-admin
|
2018-10-16 17:03:59 +02:00
|
|
|
{% if not admin_enabled %}
|
2018-04-22 11:53:18 +02:00
|
|
|
ports:
|
|
|
|
- 127.0.0.1:8080:80
|
|
|
|
{% endif %}
|
|
|
|
volumes:
|
2018-10-16 10:09:42 +02:00
|
|
|
- "{{ root }}/data:/data"
|
|
|
|
- "{{ root }}/dkim:/dkim"
|
2018-04-22 11:53:18 +02:00
|
|
|
depends_on:
|
|
|
|
- redis
|
2022-01-06 10:42:59 +02:00
|
|
|
{% if resolver_enabled %}
|
|
|
|
- resolver
|
|
|
|
dns:
|
|
|
|
- {{ dns }}
|
|
|
|
{% endif %}
|
2018-04-22 11:53:18 +02:00
|
|
|
|
|
|
|
imap:
|
2023-03-16 19:38:25 +02:00
|
|
|
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}dovecot:${MAILU_VERSION:-{{ version }}}
|
2018-10-22 14:13:18 +02:00
|
|
|
restart: always
|
2018-04-22 11:53:18 +02:00
|
|
|
env_file: {{ env }}
|
2023-04-02 17:08:30 +02:00
|
|
|
logging:
|
|
|
|
driver: journald
|
|
|
|
options:
|
2023-04-02 17:24:34 +02:00
|
|
|
tag: mailu-imap
|
2018-04-22 11:53:18 +02:00
|
|
|
volumes:
|
2018-10-16 10:09:42 +02:00
|
|
|
- "{{ root }}/mail:/mail"
|
2020-04-11 14:34:50 +02:00
|
|
|
- "{{ root }}/overrides/dovecot:/overrides:ro"
|
2018-04-22 11:53:18 +02:00
|
|
|
depends_on:
|
|
|
|
- front
|
2022-01-06 13:48:35 +02:00
|
|
|
{% if resolver_enabled %}
|
|
|
|
- resolver
|
|
|
|
dns:
|
|
|
|
- {{ dns }}
|
|
|
|
{% endif %}
|
2018-04-22 11:53:18 +02:00
|
|
|
|
|
|
|
smtp:
|
2023-03-16 19:38:25 +02:00
|
|
|
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}postfix:${MAILU_VERSION:-{{ version }}}
|
2018-10-22 14:13:18 +02:00
|
|
|
restart: always
|
2018-04-22 11:53:18 +02:00
|
|
|
env_file: {{ env }}
|
2023-04-02 17:08:30 +02:00
|
|
|
logging:
|
|
|
|
driver: journald
|
|
|
|
options:
|
2023-04-02 17:24:34 +02:00
|
|
|
tag: mailu-smtp
|
2018-04-22 11:53:18 +02:00
|
|
|
volumes:
|
2019-10-11 08:45:58 +02:00
|
|
|
- "{{ root }}/mailqueue:/queue"
|
2020-04-11 14:34:50 +02:00
|
|
|
- "{{ root }}/overrides/postfix:/overrides:ro"
|
2018-04-22 11:53:18 +02:00
|
|
|
depends_on:
|
|
|
|
- front
|
2018-10-23 16:46:06 +02:00
|
|
|
{% if resolver_enabled %}
|
2018-10-23 14:42:19 +02:00
|
|
|
- resolver
|
|
|
|
dns:
|
|
|
|
- {{ dns }}
|
|
|
|
{% endif %}
|
2018-04-22 11:53:18 +02:00
|
|
|
|
2022-12-19 12:53:05 +02:00
|
|
|
{% if oletools_enabled %}
|
2022-11-23 16:42:46 +02:00
|
|
|
oletools:
|
2023-03-16 19:38:25 +02:00
|
|
|
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}oletools:${MAILU_VERSION:-{{ version }}}
|
2022-11-23 16:42:46 +02:00
|
|
|
hostname: oletools
|
|
|
|
restart: always
|
|
|
|
networks:
|
|
|
|
- noinet
|
|
|
|
depends_on:
|
|
|
|
{% if resolver_enabled %}
|
|
|
|
- resolver
|
|
|
|
dns:
|
|
|
|
- {{ dns }}
|
|
|
|
{% endif %}
|
2022-12-19 12:53:05 +02:00
|
|
|
{% endif %}
|
2022-11-23 16:42:46 +02:00
|
|
|
|
2018-04-22 11:53:18 +02:00
|
|
|
antispam:
|
2023-03-16 19:38:25 +02:00
|
|
|
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}rspamd:${MAILU_VERSION:-{{ version }}}
|
2021-06-29 09:59:24 +02:00
|
|
|
hostname: antispam
|
2018-10-22 14:13:18 +02:00
|
|
|
restart: always
|
2018-04-22 11:53:18 +02:00
|
|
|
env_file: {{ env }}
|
2023-04-02 17:08:30 +02:00
|
|
|
logging:
|
|
|
|
driver: journald
|
|
|
|
options:
|
2023-04-02 17:24:34 +02:00
|
|
|
tag: mailu-antispam
|
2022-12-19 12:53:05 +02:00
|
|
|
{% if oletools_enabled %}
|
2022-11-23 16:42:46 +02:00
|
|
|
networks:
|
|
|
|
- default
|
|
|
|
- noinet
|
2022-12-19 12:53:05 +02:00
|
|
|
{% endif %}
|
2018-04-22 11:53:18 +02:00
|
|
|
volumes:
|
2018-10-16 10:09:42 +02:00
|
|
|
- "{{ root }}/filter:/var/lib/rspamd"
|
2023-03-09 10:21:45 +02:00
|
|
|
- "{{ root }}/overrides/rspamd:/overrides:ro"
|
2018-04-22 11:53:18 +02:00
|
|
|
depends_on:
|
|
|
|
- front
|
2022-12-20 10:40:29 +02:00
|
|
|
- redis
|
2022-12-19 13:05:27 +02:00
|
|
|
{% if oletools_enabled %}
|
2022-11-23 16:42:46 +02:00
|
|
|
- oletools
|
2022-12-19 13:05:27 +02:00
|
|
|
{% endif %}
|
2022-12-08 13:46:31 +02:00
|
|
|
{% if antivirus_enabled %}
|
|
|
|
- antivirus
|
|
|
|
{% endif %}
|
2018-10-23 14:42:19 +02:00
|
|
|
{% if resolver_enabled %}
|
|
|
|
- resolver
|
|
|
|
dns:
|
|
|
|
- {{ dns }}
|
|
|
|
{% endif %}
|
2018-04-22 11:53:18 +02:00
|
|
|
|
2018-10-25 16:37:22 +02:00
|
|
|
# Optional services
|
2018-10-16 15:12:42 +02:00
|
|
|
{% if antivirus_enabled %}
|
2018-04-22 11:53:18 +02:00
|
|
|
antivirus:
|
2023-03-16 19:38:25 +02:00
|
|
|
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}clamav:${MAILU_VERSION:-{{ version }}}
|
2018-10-22 14:13:18 +02:00
|
|
|
restart: always
|
2018-04-22 11:53:18 +02:00
|
|
|
env_file: {{ env }}
|
|
|
|
volumes:
|
2018-10-16 10:09:42 +02:00
|
|
|
- "{{ root }}/filter:/data"
|
2018-10-23 14:42:19 +02:00
|
|
|
{% if resolver_enabled %}
|
|
|
|
depends_on:
|
|
|
|
- resolver
|
|
|
|
dns:
|
|
|
|
- {{ dns }}
|
|
|
|
{% endif %}
|
2018-04-22 11:53:18 +02:00
|
|
|
{% endif %}
|
|
|
|
|
2018-10-16 15:12:42 +02:00
|
|
|
{% if webdav_enabled %}
|
2018-04-22 11:53:18 +02:00
|
|
|
webdav:
|
2023-03-16 19:38:25 +02:00
|
|
|
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}radicale:${MAILU_VERSION:-{{ version }}}
|
2018-10-22 14:13:18 +02:00
|
|
|
restart: always
|
2018-04-22 11:53:18 +02:00
|
|
|
volumes:
|
2018-10-16 10:09:42 +02:00
|
|
|
- "{{ root }}/dav:/data"
|
2023-01-04 16:03:47 +02:00
|
|
|
networks:
|
|
|
|
- radicale
|
2018-04-22 11:53:18 +02:00
|
|
|
{% endif %}
|
|
|
|
|
2018-10-16 17:03:59 +02:00
|
|
|
{% if fetchmail_enabled %}
|
2018-04-22 11:53:18 +02:00
|
|
|
fetchmail:
|
2023-03-16 19:38:25 +02:00
|
|
|
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}fetchmail:${MAILU_VERSION:-{{ version }}}
|
2018-10-22 14:13:18 +02:00
|
|
|
restart: always
|
2018-04-22 11:53:18 +02:00
|
|
|
env_file: {{ env }}
|
2021-11-09 16:10:04 +02:00
|
|
|
volumes:
|
2021-11-10 15:08:33 +02:00
|
|
|
- "{{ root }}/data/fetchmail:/data"
|
2018-10-23 14:42:19 +02:00
|
|
|
depends_on:
|
2022-11-13 18:15:50 +02:00
|
|
|
- admin
|
|
|
|
- smtp
|
|
|
|
- imap
|
|
|
|
{% if resolver_enabled %}
|
2018-10-23 14:42:19 +02:00
|
|
|
- resolver
|
|
|
|
dns:
|
|
|
|
- {{ dns }}
|
|
|
|
{% endif %}
|
2018-04-22 11:53:18 +02:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
# Webmail
|
2018-10-17 14:11:55 +02:00
|
|
|
{% if webmail_type != 'none' %}
|
2018-04-22 11:53:18 +02:00
|
|
|
webmail:
|
2023-03-16 19:38:25 +02:00
|
|
|
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}webmail:${MAILU_VERSION:-{{ version }}}
|
2018-10-22 14:13:18 +02:00
|
|
|
restart: always
|
2018-04-22 11:53:18 +02:00
|
|
|
env_file: {{ env }}
|
|
|
|
volumes:
|
2018-10-16 10:09:42 +02:00
|
|
|
- "{{ root }}/webmail:/data"
|
2021-12-18 18:43:21 +02:00
|
|
|
- "{{ root }}/overrides/{{ webmail_type }}:/overrides:ro"
|
2023-01-04 16:03:47 +02:00
|
|
|
networks:
|
|
|
|
- webmail
|
2018-04-22 11:53:18 +02:00
|
|
|
depends_on:
|
2023-01-04 16:03:47 +02:00
|
|
|
- front
|
2018-04-22 11:53:18 +02:00
|
|
|
{% endif %}
|
2018-12-06 16:44:12 +02:00
|
|
|
|
2018-10-23 14:42:19 +02:00
|
|
|
networks:
|
|
|
|
default:
|
2019-01-17 16:24:52 +02:00
|
|
|
{% if ipv6_enabled %}
|
|
|
|
enable_ipv6: true
|
|
|
|
{% endif %}
|
2018-10-23 14:42:19 +02:00
|
|
|
driver: bridge
|
|
|
|
ipam:
|
|
|
|
driver: default
|
|
|
|
config:
|
|
|
|
- subnet: {{ subnet }}
|
2019-01-17 16:24:52 +02:00
|
|
|
{% if ipv6_enabled %}
|
|
|
|
- subnet: {{ subnet6 }}
|
|
|
|
{% endif %}
|
2023-01-04 16:03:47 +02:00
|
|
|
{% if webdav_enabled %}
|
|
|
|
radicale:
|
|
|
|
driver: bridge
|
|
|
|
{% endif %}
|
|
|
|
{% if webmail_type != 'none' %}
|
|
|
|
webmail:
|
|
|
|
driver: bridge
|
|
|
|
{% endif %}
|
2022-12-19 12:53:05 +02:00
|
|
|
{% if oletools_enabled %}
|
2022-11-23 16:42:46 +02:00
|
|
|
noinet:
|
|
|
|
driver: bridge
|
|
|
|
internal: true
|
2022-12-19 12:53:05 +02:00
|
|
|
{% endif %}
|