[bitnami/pgpool] Release 4.4.2-debian-11-r8 (#24390)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
7f9292ae57
commit
7a9052aff2
|
|
@ -2,11 +2,11 @@ FROM docker.io/bitnami/minideb:bullseye
|
|||
|
||||
ARG TARGETARCH
|
||||
|
||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
|
||||
org.opencontainers.image.created="2023-02-17T18:03:53Z" \
|
||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="4.4.2-debian-11-r7" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/pgpool" \
|
||||
org.opencontainers.image.ref.name="4.4.2-debian-11-r8" \
|
||||
org.opencontainers.image.title="pgpool" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="4.4.2"
|
||||
|
|
@ -22,10 +22,10 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|||
RUN install_packages ca-certificates curl ldap-utils libaudit1 libbsd0 libcap-ng0 libcrypt1 libedit2 libffi7 libgcc-s1 libgmp10 libgnutls30 libhogweed6 libicu67 libidn2-0 libldap-2.4-2 libldap-common liblz4-1 liblzma5 libmd0 libnettle8 libp11-kit0 libpam-ldapd libpam0g libsasl2-2 libssl1.1 libstdc++6 libtasn1-6 libtinfo6 libunistring2 libuuid1 libxml2 libxslt1.1 nslcd procps zlib1g
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
COMPONENTS=( \
|
||||
"postgresql-client-14.7.0-0-linux-${OS_ARCH}-debian-11" \
|
||||
"wait-for-port-1.0.6-0-linux-${OS_ARCH}-debian-11" \
|
||||
"pgpool-4.4.2-1-linux-${OS_ARCH}-debian-11" \
|
||||
"gosu-1.16.0-1-linux-${OS_ARCH}-debian-11" \
|
||||
"postgresql-client-14.7.0-1-linux-${OS_ARCH}-debian-11" \
|
||||
"wait-for-port-1.0.6-1-linux-${OS_ARCH}-debian-11" \
|
||||
"pgpool-4.4.2-2-linux-${OS_ARCH}-debian-11" \
|
||||
"gosu-1.16.0-2-linux-${OS_ARCH}-debian-11" \
|
||||
) && \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
|
|
|
|||
|
|
@ -1,30 +1,30 @@
|
|||
{
|
||||
"gosu": {
|
||||
"arch": "amd64",
|
||||
"digest": "9ab9654690d90d3c49ff66fb1eb286487e318adc899d036bc45922f6b176865b",
|
||||
"digest": "f6056076afb745fd7d9d87d20f71e7248d63330352cf5ae0be2130b7f44a8cfa",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.16.0-1"
|
||||
"version": "1.16.0-2"
|
||||
},
|
||||
"pgpool": {
|
||||
"arch": "amd64",
|
||||
"digest": "c9edd2e61b80895c6ea24f6c9ad1d67f4bc583b18a646392d518bebcd275ae74",
|
||||
"digest": "97cd5266b133b64400d7daf105bbced5972d77f53b68d96b829c982e7ea60265",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "4.4.2-1"
|
||||
"version": "4.4.2-2"
|
||||
},
|
||||
"postgresql-client": {
|
||||
"arch": "amd64",
|
||||
"digest": "ee21941aa945ca1e03044390aa486f5139f7fbd47a8eb8fd60bbbb9180f5baa8",
|
||||
"digest": "fd6d0139da68f4b4352ddb527e93bbc4ff30583ab27e6c707bf7eaaf670f36c5",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "14.7.0-0"
|
||||
"version": "14.7.0-1"
|
||||
},
|
||||
"wait-for-port": {
|
||||
"arch": "amd64",
|
||||
"digest": "f9199cd66b92fef328ecfbc5ffbc8f14be33257a4e34b8c6ba35a730c5a2f59d",
|
||||
"digest": "be7c393d598ddf16d1c3c008a67b87879e48aca62071a208583390f2b41e6744",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.0.6-0"
|
||||
"version": "1.0.6-1"
|
||||
}
|
||||
}
|
||||
|
|
@ -144,7 +144,7 @@ docker run -it --rm \
|
|||
psql -h pgpool -U customuser -d customdatabase
|
||||
```
|
||||
|
||||
### Using Docker Compose
|
||||
### Using a Docker Compose file
|
||||
|
||||
When not specified, Docker Compose automatically sets up a new network and attaches all deployed services to that network. However, we will explicitly define a new `bridge` network named `my-network`. In this example we assume that you want to connect to the Pgpool server from your own custom application image which is identified in the following snippet by the service name `myapp`.
|
||||
|
||||
|
|
@ -400,7 +400,7 @@ When enabling TLS, Pgpool will support both standard and encrypted traffic by de
|
|||
1. Using `docker run`
|
||||
|
||||
```console
|
||||
docker run \
|
||||
$ docker run \
|
||||
-v /path/to/certs:/opt/bitnami/pgpool/certs \
|
||||
-e ALLOW_EMPTY_PASSWORD=yes \
|
||||
-e PGPOOL_ENABLE_TLS=yes \
|
||||
|
|
|
|||
Loading…
Reference in New Issue