mirror of
https://github.com/Thumbscrew/pgadmin4-docker-compose.git
synced 2025-01-18 09:35:48 +00:00
add SMTP config options
This commit is contained in:
parent
8f8d0bbf78
commit
9912fa185c
@ -21,9 +21,17 @@ services:
|
|||||||
- frontend
|
- frontend
|
||||||
secrets:
|
secrets:
|
||||||
- default_password
|
- default_password
|
||||||
ports:
|
# Uncomment to expose port on host
|
||||||
- 8080:80
|
# ports:
|
||||||
|
# - 8080:80
|
||||||
environment:
|
environment:
|
||||||
PGADMIN_DEFAULT_EMAIL: ${DEFAULT_EMAIL}
|
PGADMIN_DEFAULT_EMAIL: ${DEFAULT_EMAIL}
|
||||||
PGADMIN_DEFAULT_PASSWORD_FILE: /run/secrets/default_password
|
PGADMIN_DEFAULT_PASSWORD_FILE: /run/secrets/default_password
|
||||||
PGADMIN_DISABLE_POSTFIX: ${DISABLE_POSTFIX-false}
|
PGADMIN_DISABLE_POSTFIX: ${DISABLE_POSTFIX}
|
||||||
|
PGADMIN_CONFIG_MAIL_SERVER: ${MAIL_SERVER-"'localhost'"}
|
||||||
|
PGADMIN_CONFIG_MAIL_PORT: ${MAIL_PORT-25}
|
||||||
|
PGADMIN_CONFIG_MAIL_USE_SSL: ${MAIL_USE_SSL-False}
|
||||||
|
PGADMIN_CONFIG_MAIL_USE_TLS: ${MAIL_USE_TLS-False}
|
||||||
|
PGADMIN_CONFIG_MAIL_USERNAME: ${MAIL_USERNAME-"''"}
|
||||||
|
PGADMIN_CONFIG_MAIL_PASSWORD: ${MAIL_PASSWORD-"''"}
|
||||||
|
PGADMIN_CONFIG_SECURITY_EMAIL_SENDER: ${SECURITY_EMAIL_SENDER-"'no-reply@localhost'"}
|
Loading…
Reference in New Issue
Block a user