Compose file upgrade and define more variables for setup

master
Tim Möhlmann 6 years ago
parent a91a54b5f1
commit 11a8e49f05
No known key found for this signature in database
GPG Key ID: AFABC30066A39335

@ -2,7 +2,7 @@
# This file is auto-generated by the Mailu configuration wizard. # This file is auto-generated by the Mailu configuration wizard.
# Please read the documentation before attempting any change. # Please read the documentation before attempting any change.
version: '2' version: '3.7'
services: services:
@ -11,7 +11,7 @@ services:
image: redis:alpine image: redis:alpine
restart: always restart: always
volumes: volumes:
- "$ROOT/redis:/data" - "{{ root }}/redis:/data"
# Core services # Core services
front: front:
@ -24,15 +24,15 @@ services:
ports: ports:
{% for port in (80, 443, 25, 465, 587, 110, 995, 143, 993) %} {% for port in (80, 443, 25, 465, 587, 110, 995, 143, 993) %}
{% if bind4 %} {% if bind4 %}
- "$PUBLIC_IPV4:{{ port }}:{{ port }}" - "{{ bind4}}:{{ port }}:{{ port }}"
{% endif %} {% endif %}
{% if bind6 %} {% if bind6 %}
- "$PUBLIC_IPV6:{{ port }}:{{ port }}" - "{{ bind6 }}:{{ port }}:{{ port }}"
{% endif %} {% endif %}
{% endfor %} {% endfor %}
{% if flavor in ('cert', 'mail') %} {% if flavor in ('cert', 'mail') %}
volumes: volumes:
- "$ROOT/certs:/certs" - "{{ root }}/certs:/certs"
{% endif %} {% endif %}
admin: admin:
@ -44,8 +44,8 @@ services:
- 127.0.0.1:8080:80 - 127.0.0.1:8080:80
{% endif %} {% endif %}
volumes: volumes:
- "$ROOT/data:/data" - "{{ root }}/data:/data"
- "$ROOT/dkim:/dkim" - "{{ root }}/dkim:/dkim"
depends_on: depends_on:
- redis - redis
@ -54,9 +54,9 @@ services:
restart: always restart: always
env_file: {{ env }} env_file: {{ env }}
volumes: volumes:
- "$ROOT/data:/data" - "{{ root }}/data:/data"
- "$ROOT/mail:/mail" - "{{ root }}/mail:/mail"
- "$ROOT/overrides:/overrides" - "{{ root }}/overrides:/overrides"
depends_on: depends_on:
- front - front
@ -65,8 +65,8 @@ services:
restart: always restart: always
env_file: {{ env }} env_file: {{ env }}
volumes: volumes:
- "$ROOT/data:/data" - "{{ root }}/data:/data"
- "$ROOT/overrides:/overrides" - "{{ root }}/overrides:/overrides"
depends_on: depends_on:
- front - front
@ -77,9 +77,9 @@ services:
restart: always restart: always
env_file: {{ env }} env_file: {{ env }}
volumes: volumes:
- "$ROOT/filter:/var/lib/rspamd" - "{{ root }}/filter:/var/lib/rspamd"
- "$ROOT/dkim:/dkim" - "{{ root }}/dkim:/dkim"
- "$ROOT/overrides/rspamd:/etc/rspamd/override.d" - "{{ root }}/overrides/rspamd:/etc/rspamd/override.d"
depends_on: depends_on:
- front - front
{% endif %} {% endif %}
@ -90,7 +90,7 @@ services:
restart: always restart: always
env_file: {{ env }} env_file: {{ env }}
volumes: volumes:
- "$ROOT/filter:/data" - "{{ root }}/filter:/data"
{% endif %} {% endif %}
{% if enable_webdav %} {% if enable_webdav %}
@ -99,7 +99,7 @@ services:
restart: always restart: always
env_file: {{ env }} env_file: {{ env }}
volumes: volumes:
- "$ROOT/dav:/data" - "{{ root }}/dav:/data"
{% endif %} {% endif %}
{% if enable_fetchmail %} {% if enable_fetchmail %}
@ -108,7 +108,7 @@ services:
restart: always restart: always
env_file: {{ env }} env_file: {{ env }}
volumes: volumes:
- "$ROOT/data:/data" - "{{ root }}/data:/data"
{% endif %} {% endif %}
# Webmail # Webmail
@ -118,7 +118,7 @@ services:
restart: always restart: always
env_file: {{ env }} env_file: {{ env }}
volumes: volumes:
- "$ROOT/webmail:/data" - "{{ root }}/webmail:/data"
depends_on: depends_on:
- imap - imap
{% endif %} {% endif %}

@ -9,14 +9,16 @@
################################### ###################################
# Set this to the path where Mailu data and configuration is stored # Set this to the path where Mailu data and configuration is stored
ROOT=/mailu # This variable is now set directly in `docker-compose.yml by the setup utility
# ROOT=/mailu
# Set to a randomly generated 16 bytes string # Set to a randomly generated 16 bytes string
SECRET_KEY={{ secret(16) }} SECRET_KEY={{ secret(16) }}
# Address where listening ports should bind # Address where listening ports should bind
{% if bind4 %}PUBLIC_IPV4={{ bind4 }}{% endif %} # This variables are now set directly in `docker-compose.yml by the setup utility
{% if bind6 %}PUBLIC_IPV6={{ bind6 }}{% endif %} # PUBLIC_IPV4=127.0.0.1
# PUBLIC_IPV6=::1
# Mail address of the postmaster # Mail address of the postmaster
POSTMASTER={{ postmaster }} POSTMASTER={{ postmaster }}
@ -75,16 +77,16 @@ DOMAIN_REGISTRATION=true
################################### ###################################
# Path to the admin interface if enabled # Path to the admin interface if enabled
WEB_ADMIN=/admin WEB_ADMIN={{ admin_path }}
# Path to the webmail if enabled # Path to the webmail if enabled
WEB_WEBMAIL=/webmail WEB_WEBMAIL={{ webmail_path }}
# Website name # Website name
SITENAME=Mailu SITENAME={{ site_name }{
# Linked Website URL # Linked Website URL
WEBSITE=https://mailu.io WEBSITE={{ website }}
{% if recaptcha_public_key and recaptcha_private_key %} {% if recaptcha_public_key and recaptcha_private_key %}
# Registration reCaptcha settings (warning, this has some privacy impact) # Registration reCaptcha settings (warning, this has some privacy impact)

Loading…
Cancel
Save