[bitnami/pgbouncer] log to stdout only by default (#68905)

[bitnami/pgbouncer] do not log to file by default

Signed-off-by: Taras Postument <taras.postument@gmail.com>
This commit is contained in:
Taras
2024-07-09 12:08:41 +01:00
committed by GitHub
parent 4b92641614
commit 7f8a148604
2 changed files with 2 additions and 2 deletions

View File

@@ -118,7 +118,7 @@ export PGBOUNCER_MOUNTED_CONF_DIR="${PGBOUNCER_VOLUME_DIR}/conf"
export PGBOUNCER_INITSCRIPTS_DIR="/docker-entrypoint-initdb.d"
# General PgBouncer settings
export PGBOUNCER_LOG_FILE="${PGBOUNCER_LOG_FILE:-${PGBOUNCER_LOG_DIR}/pgbouncer.log}"
export PGBOUNCER_LOG_FILE="${PGBOUNCER_LOG_FILE:-}"
export PGBOUNCER_DATABASE="${PGBOUNCER_DATABASE:-postgres}"
export PGBOUNCER_PORT="${PGBOUNCER_PORT:-6432}"
export PGBOUNCER_LISTEN_ADDRESS="${PGBOUNCER_LISTEN_ADDRESS:-0.0.0.0}"

View File

@@ -68,7 +68,7 @@ docker build -t bitnami/APP:latest .
| Name | Description | Default Value |
|---------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
| `PGBOUNCER_LOG_FILE` | PgBouncer log file. | `${PGBOUNCER_LOG_DIR}/pgbouncer.log` |
| `PGBOUNCER_LOG_FILE` | If set, log PgBouncer output to log file in addition to stdout. | `nil` |
| `PGBOUNCER_DATABASE` | PgBouncer advertised database. | `postgres` |
| `PGBOUNCER_PORT` | PgBouncer port | `6432` |
| `PGBOUNCER_LISTEN_ADDRESS` | PgBouncer listen address | `0.0.0.0` |