4.1.1-debian-10-r57 release
This commit is contained in:
parent
83c0b4451e
commit
84dd324bf0
|
|
@ -20,7 +20,7 @@ RUN apt-get update && apt-get upgrade -y && \
|
|||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/pgpool/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="pgpool" \
|
||||
BITNAMI_IMAGE_VERSION="4.1.1-debian-10-r56" \
|
||||
BITNAMI_IMAGE_VERSION="4.1.1-debian-10-r57" \
|
||||
NAMI_PREFIX="/.nami" \
|
||||
PATH="/opt/bitnami/common/bin:/opt/bitnami/postgresql/bin:/opt/bitnami/pgpool/bin:/opt/bitnami/common/bin:$PATH"
|
||||
|
||||
|
|
|
|||
|
|
@ -41,7 +41,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/containers/how-to/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`4-debian-10`, `4.1.1-debian-10-r56`, `4`, `4.1.1`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-pgpool/blob/4.1.1-debian-10-r56/4/debian-10/Dockerfile)
|
||||
* [`4-debian-10`, `4.1.1-debian-10-r57`, `4`, `4.1.1`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-pgpool/blob/4.1.1-debian-10-r57/4/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/pgpool GitHub repo](https://github.com/bitnami/bitnami-docker-pgpool).
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ services:
|
|||
- PGPOOL_ADMIN_PASSWORD=adminpassword
|
||||
- PGPOOL_ENABLE_LOAD_BALANCING=yes
|
||||
- PGPOOL_ENABLE_LDAP=yes
|
||||
- LDAP_URI=ldap://ldap
|
||||
- LDAP_URI=ldap://openldap:1389
|
||||
- LDAP_BASE=dc=example,dc=org
|
||||
- LDAP_BIND_DN=cn=admin,dc=example,dc=org
|
||||
- LDAP_BIND_PASSWORD=adminpassword
|
||||
|
|
@ -57,18 +57,22 @@ services:
|
|||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
ldap:
|
||||
image: 'juanariza131/openldap:latest'
|
||||
openldap:
|
||||
image: 'bitnami/openldap:latest'
|
||||
ports:
|
||||
- '389:389'
|
||||
- '1389:1389'
|
||||
environment:
|
||||
- LDAP_ADMIN_USERNAME=admin
|
||||
- LDAP_ADMIN_PASSWORD=adminpassword
|
||||
- LDAP_USERS=customuser
|
||||
- LDAP_PASSWORDS=custompassword
|
||||
volumes:
|
||||
- 'openldap_data:/bitnami/openldap'
|
||||
|
||||
volumes:
|
||||
pg_0_data:
|
||||
driver: local
|
||||
pg_1_data:
|
||||
driver: local
|
||||
openldap_data:
|
||||
driver: local
|
||||
|
|
|
|||
Loading…
Reference in New Issue