forked from hardware/mailserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.env
42 lines (33 loc) · 1.18 KB
/
sample.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# This file is used to define environment variables to be used
# for variable substitution in your docker compose file.
# https://docs.docker.com/compose/env-file/
#
# MANDATORY
# /!\ if this variables are unset, the mail server will not start.
#
# Your domain name (eg. domain.tld)
MAILSERVER_DOMAIN=
# MariaDB/PostgreSQL database password
DATABASE_USER_PASSWORD=
# Rspamd WebUI and controller password
RSPAMD_PASSWORD=
#
# NOT MANDATORY
#
# Your mailserver hostname (eg. mail for mail.domain.tld)
MAILSERVER_HOSTNAME=mail
# Mailserver version
# 1.1-stable : Stable version (v1.1-stable github branch)
# 1.1-latest : Latest development build (master github branch)
# Latest development builds have been validated through
# the CI automation system but they are not meant for
# deployment in production.
# 1.1-stable and 1.1-latest are rebuilt weekly on the docker hub but if you
# have any problem with a new build you can switch to 1.1-stable-fallback
# The fallback tag is rebuilt monthly.
MAILSERVER_DOCKER_TAG=1.1-stable
# Docker volumes parent folder
VOLUMES_ROOT_PATH=/mnt/docker
# Docker containers restart mode
# https://docs.docker.com/compose/compose-file/#restart
RESTART_MODE=unless-stopped