mirror of
https://github.com/bitnami/containers.git
synced 2026-04-04 16:27:46 +08:00
4.3.1-debian-10-r67 release
This commit is contained in:
committed by
Bitnami Containers
parent
65d7a8415c
commit
6364714801
@@ -1,7 +1,7 @@
|
||||
version: '2.1'
|
||||
services:
|
||||
pg-0:
|
||||
image: docker.io/bitnami/postgresql-repmgr:11
|
||||
image: docker.io/bitnami/postgresql-repmgr:14
|
||||
ports:
|
||||
- 5432
|
||||
volumes:
|
||||
@@ -18,7 +18,7 @@ services:
|
||||
- REPMGR_NODE_NAME=pg-0
|
||||
- REPMGR_NODE_NETWORK_NAME=pg-0
|
||||
pg-1:
|
||||
image: docker.io/bitnami/postgresql-repmgr:11
|
||||
image: docker.io/bitnami/postgresql-repmgr:14
|
||||
ports:
|
||||
- 5432
|
||||
volumes:
|
||||
|
||||
@@ -79,7 +79,7 @@ export PGPOOL_POSTGRES_CUSTOM_USERS="${PGPOOL_POSTGRES_CUSTOM_USERS:-}"
|
||||
export PGPOOL_POSTGRES_CUSTOM_PASSWORDS="${PGPOOL_POSTGRES_CUSTOM_PASSWORDS:-}"
|
||||
export PGPOOL_AUTO_FAILBACK="${PGPOOL_AUTO_FAILBACK:-no}"
|
||||
export PGPOOL_BACKEND_APPLICATION_NAMES="${PGPOOL_BACKEND_APPLICATION_NAMES:-}"
|
||||
export PGPOOL_AUTHENTICATION_METHOD="${PGPOOL_AUTHENTICATION_METHOD:-md5}"
|
||||
export PGPOOL_AUTHENTICATION_METHOD="${PGPOOL_AUTHENTICATION_METHOD:-scram-sha-256}"
|
||||
export PGPOOL_AES_KEY="${PGPOOL_AES_KEY:-$(head -c 20 /dev/urandom | base64)}"
|
||||
|
||||
# SSL
|
||||
|
||||
@@ -43,7 +43,7 @@ Non-root container images add an extra layer of security and are generally recom
|
||||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`4`, `4-debian-10`, `4.3.1`, `4.3.1-debian-10-r66`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-pgpool/blob/4.3.1-debian-10-r66/4/debian-10/Dockerfile)
|
||||
* [`4`, `4-debian-10`, `4.3.1`, `4.3.1-debian-10-r67`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-pgpool/blob/4.3.1-debian-10-r67/4/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/pgpool GitHub repo](https://github.com/bitnami/bitnami-docker-pgpool).
|
||||
|
||||
@@ -155,7 +155,7 @@ networks:
|
||||
driver: bridge
|
||||
services:
|
||||
pg-0:
|
||||
image: bitnami/postgresql-repmgr:11
|
||||
image: bitnami/postgresql-repmgr:14
|
||||
ports:
|
||||
- 5432
|
||||
volumes:
|
||||
@@ -171,7 +171,7 @@ services:
|
||||
- REPMGR_NODE_NAME=pg-0
|
||||
- REPMGR_NODE_NETWORK_NAME=pg-0
|
||||
pg-1:
|
||||
image: bitnami/postgresql-repmgr:11
|
||||
image: bitnami/postgresql-repmgr:14
|
||||
ports:
|
||||
- 5432
|
||||
volumes:
|
||||
@@ -276,7 +276,7 @@ Pgpool configuration:
|
||||
- `PGPOOL_POSTGRES_CUSTOM_PASSWORDS`: List of comma or semicolon separated list for postgresql user passwords. These are the corresponding passwords for the users in `PGPOOL_POSTGRES_CUSTOM_USERS`. No defaults.
|
||||
- `PGPOOL_AUTO_FAILBACK`: Enables pgpool `[auto_failback](https://www.pgpool.net/docs/latest/en/html/runtime-config-failover.html)`. Default to `no`.
|
||||
- `PGPOOL_BACKEND_APPLICATION_NAMES`: Comma separated list of backend nodes `application_name`. No defaults.
|
||||
- `PGPOOL_AUTHENTICATION_METHOD`: Specifies the authentication method('md5', 'scram-sha-256'). Defaults to `md5`
|
||||
- `PGPOOL_AUTHENTICATION_METHOD`: Specifies the authentication method('md5', 'scram-sha-256'). Defaults to `scram-sha-256`.
|
||||
- `PGPOOL_AES_KEY`: Specifies the AES encryption key used for 'scram-sha-256' passwords. Defaults to `random string`.
|
||||
|
||||
PostgreSQL with Replication Manager:
|
||||
@@ -590,6 +590,10 @@ $ docker-compose up pgpool
|
||||
|
||||
## Notable Changes
|
||||
|
||||
### 4.3.1-debian-10-r67
|
||||
|
||||
- The ENV `PGPOOL_AUTHENTICATION_METHOD` default value has been changed from `md5` to `scram-sha-256` as our `bitnami/postgresql-repmgr:latest` image now uses PSQL v14, which has `scram-sha-256` as the default auth method.
|
||||
|
||||
### 4.1.1-debian-10-r35
|
||||
|
||||
- The Pgpool container has been migrated to a "non-root" user approach. Previously the container ran as the `root` user and the Pgpool daemon was started as the `pgpool` user. From now on, both the container and the Pgpool daemon run as user `1001`. You can revert this behavior by changing `USER 1001` to `USER root` in the Dockerfile.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
version: '2.1'
|
||||
services:
|
||||
pg-0:
|
||||
image: docker.io/bitnami/postgresql-repmgr:11
|
||||
image: docker.io/bitnami/postgresql-repmgr:14
|
||||
ports:
|
||||
- 5432
|
||||
volumes:
|
||||
@@ -18,7 +18,7 @@ services:
|
||||
- REPMGR_NODE_NETWORK_NAME=pg-0
|
||||
- REPMGR_PGHBA_TRUST_ALL=yes
|
||||
pg-1:
|
||||
image: docker.io/bitnami/postgresql-repmgr:11
|
||||
image: docker.io/bitnami/postgresql-repmgr:14
|
||||
ports:
|
||||
- 5432
|
||||
volumes:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
version: '2.1'
|
||||
services:
|
||||
pg-0:
|
||||
image: docker.io/bitnami/postgresql-repmgr:11
|
||||
image: docker.io/bitnami/postgresql-repmgr:14
|
||||
ports:
|
||||
- 5432
|
||||
volumes:
|
||||
@@ -18,7 +18,7 @@ services:
|
||||
- REPMGR_NODE_NAME=pg-0
|
||||
- REPMGR_NODE_NETWORK_NAME=pg-0
|
||||
pg-1:
|
||||
image: docker.io/bitnami/postgresql-repmgr:11
|
||||
image: docker.io/bitnami/postgresql-repmgr:14
|
||||
ports:
|
||||
- 5432
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user