@@ -173,7 +173,7 @@ docker-compose up -d
173173# ### Customizable environment variables
174174
175175| Name | Description | Default Value |
176- | ------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------ |
176+ |--------------------------------------------| --------------------------------------------------------------------------------------------------| -------------------------------------------- |
177177| `POSTGRESQL_VOLUME_DIR` | Persistence base directory | `/bitnami/postgresql` |
178178| `POSTGRESQL_DATA_DIR` | PostgreSQL data directory | `${POSTGRESQL_VOLUME_DIR}/data` |
179179| `POSTGRESQL_EXTRA_FLAGS` | Extra flags for PostgreSQL initialization | `nil` |
@@ -245,16 +245,16 @@ docker-compose up -d
245245| `POSTGRESQL_DEFAULT_TOAST_COMPRESSION` | Set the postgres default compression | `nil` |
246246| `POSTGRESQL_PASSWORD_ENCRYPTION` | Set the passwords encryption method | `nil` |
247247| `POSTGRESQL_DEFAULT_TRANSACTION_ISOLATION` | Set transaction isolation | `nil` |
248+ | `POSTGRESQL_PERFORM_RESTORE` | Flag to skip deletion of `recovery.signal` file to enable native recovery. e.g by using `wal-g` | `no` |
248249| `POSTGRESQL_AUTOCTL_CONF_DIR` | Path to the configuration dir for the pg_autoctl command | `${POSTGRESQL_AUTOCTL_VOLUME_DIR}/.config` |
249250| `POSTGRESQL_AUTOCTL_MODE` | pgAutoFailover node type, valid values [monitor, postgres] | `postgres` |
250251| `POSTGRESQL_AUTOCTL_MONITOR_HOST` | Hostname for the monitor component | `monitor` |
251252| `POSTGRESQL_AUTOCTL_HOSTNAME` | Hostname by which postgres is reachable | `$(hostname --fqdn)` |
252- | `POSTGRESQL_PERFORM_RESTORE` | Flag to skip deletion of `recovery.signal` file to enable native recovery. e.g by using `wal-g` | `false` |
253253
254254# ### Read-only environment variables
255255
256256| Name | Description | Value |
257- | -------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------- |
257+ |----------------------------------------------| -----------------------------------------------------------------| ----------------------------------------------- |
258258| `POSTGRESQL_BASE_DIR` | PostgreSQL installation directory | `/opt/bitnami/postgresql` |
259259| `POSTGRESQL_DEFAULT_CONF_DIR` | PostgreSQL configuration directory | `$POSTGRESQL_BASE_DIR/conf.default` |
260260| `POSTGRESQL_CONF_DIR` | PostgreSQL configuration directory | `$POSTGRESQL_BASE_DIR/conf` |
@@ -576,7 +576,7 @@ postgres=# select application_name as server, state,
576576postgres-# sync_priority as priority, sync_state
577577postgres-# from pg_stat_replication;
578578| server | state | priority | sync_state |
579- | ----------- | --------- | -------- | ---------- |
579+ |-------------| -----------| ----------| ------------ |
580580| walreceiver | streaming | 0 | sync |
581581| walreceiver | streaming | 0 | async |
582582` ` `
@@ -804,7 +804,7 @@ docker build --build-arg EXTRA_LOCALES="es_ES.UTF-8 UTF-8" ...
804804The Bitnami PostgreSQL container allows two different sets of environment variables. Please see the list of environment variable aliases in the next table :
805805
806806| Environment Variable | Alias |
807- | :----------------------------------- | :--------------------------------- |
807+ |:-------------------------------------| :----------------------------------- |
808808| POSTGRESQL_USERNAME | POSTGRES_USER |
809809| POSTGRESQL_DATABASE | POSTGRES_DB |
810810| POSTGRESQL_PASSWORD | POSTGRES_PASSWORD |
@@ -835,7 +835,7 @@ alter database POSTGRES_DATABASE owner to POSTGRES_USER;
835835It is possible to change the user that PostgreSQL will use to execute the init scripts. To do so, use the following environment variables :
836836
837837| Environment variable | Description |
838- | ------------------------------- | ----------------------------------------------------------------- |
838+ |---------------------------------| ------------------------------------------------------------------- |
839839| POSTGRESQL_INITSCRIPTS_USERNAME | User that will be used to execute the init scripts |
840840| POSTGRESQL_INITSCRIPTS_PASSWORD | Password for the user specified in POSTGRESQL_INITSCRIPT_USERNAME |
841841
0 commit comments