mirror of
https://github.com/chatmail/relay.git
synced 2026-05-11 16:34:39 +00:00
Remove update_ini.sh and the env-var-to-ini pipeline. The container now has two config modes: - Simple: set MAIL_DOMAIN in .env, container generates chatmail.ini with defaults via `cmdeploy init` on first start. - Advanced: mount a custom chatmail.ini into the container; the init step is skipped when the file already exists. This eliminates the fragile FORCE_REINIT_INI_FILE / INI_CMD_ARGS machinery and the env vars that duplicated chatmail.ini settings Also add *.ini and .env to .dockerignore so local config files don't leak into the image.
10 lines
350 B
Bash
10 lines
350 B
Bash
MAIL_DOMAIN="chat.example.com"
|
|
|
|
# CMDEPLOY_STAGES - default: "configure,activate". Set to "install,configure,activate" to force full reinstall.
|
|
# CMDEPLOY_STAGES="configure,activate"
|
|
|
|
# Certificate monitoring (only needed with USE_FOREIGN_CERT_MANAGER)
|
|
# USE_FOREIGN_CERT_MANAGER="True"
|
|
# ENABLE_CERTS_MONITORING="true"
|
|
# CERTS_MONITORING_TIMEOUT=60
|