26 lines
900 B
Bash
26 lines
900 B
Bash
# https://www.pgadmin.org/docs/pgadmin4/latest/container_deployment.html
|
||
|
||
PUID=${PUID}
|
||
PGID=${PGID}
|
||
TZ=${TZ}
|
||
|
||
PGADMIN_DEFAULT_EMAIL=${PGADMIN_DEFAULT_EMAIL_FILE}
|
||
PGADMIN_DEFAULT_PASSWORD_FILE=${PGADMIN_DEFAULT_PASSWORD_FILE}
|
||
|
||
# PGADMIN_DISABLE_POSTFIX=
|
||
# PGADMIN_ENABLE_TLS=
|
||
# PGADMIN_LISTEN_ADDRESS=
|
||
# PGADMIN_LISTEN_PORT=
|
||
# PGADMIN_SERVER_JSON_FILE=
|
||
# GUNICORN_ACCESS_LOGFILE=
|
||
# GUNICORN_LIMIT_REQUEST_LINE=
|
||
# GUNICORN_THREADS=
|
||
|
||
|
||
# PGADMIN_CONFIG_*
|
||
# This is a variable prefix that can be used to override any of the configuration options in pgAdmin’s config.py file. Add the PGADMIN_CONFIG_ prefix to any variable name from config.py and give the value in the format ‘string value’ for strings, True/False for booleans or 123 for numbers
|
||
# examples
|
||
# PGADMIN_CONFIG_ENHANCED_COOKIE_PROTECTION=True
|
||
# PGADMIN_CONFIG_LOGIN_BANNER="Authorised users only!"
|
||
# PGADMIN_CONFIG_CONSOLE_LOG_LEVEL=10
|