Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM alpine:3.22
ARG VERSION=1.24.1
ARG VERSION=1.25.1

LABEL org.opencontainers.image.title="PgBouncer" \
org.opencontainers.image.description="Base alpine linux container image & PgBouncer" \
org.opencontainers.image.version="1.24.1" \
org.opencontainers.image.version="1.25.1" \
org.opencontainers.image.authors="Pascal Zimmermann <pascal.zimmermann@theiotstudio.com>" \
lastUpdatedBy="Pascal Zimmermann" \
lastUpdatedOn="2025-04-16"
lastUpdatedOn="2025-12-03"

ENV PG_ENV_POSTGRESQL_MAX_CLIENT_CONN 10000
ENV PG_ENV_POSTGRESQL_DEFAULT_POOL_SIZE 400
Expand All @@ -16,7 +16,7 @@ ENV PG_ENV_POSTGRESQL_POOL_MODE session
ADD run.sh /usr/local/bin/run

RUN apk --update add autoconf autoconf-doc automake udns udns-dev curl gcc libc-dev libevent libevent-dev libtool \
make openssl-dev pkgconfig postgresql-client && \
make openssl-dev pkgconfig postgresql-client pandoc-cli && \
# Download the PgBouncer version, unpack, compile and install
curl -o /tmp/pgbouncer-$VERSION.tar.gz \
-L https://pgbouncer.github.io/downloads/files/$VERSION/pgbouncer-$VERSION.tar.gz && \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
- https://github.com/mbentley/dockerfiles

## Used versions
- [alpine:3.21](https://hub.docker.com/_/alpine)
- [pgBouncer 1.24.1](https://github.com/pgbouncer/pgbouncer/releases/tag/pgbouncer_1_24_1)
- [alpine:3.22](https://hub.docker.com/_/alpine)
- [pgBouncer 1.25.1](https://github.com/pgbouncer/pgbouncer/releases/tag/pgbouncer_1_25_1)
## Supported setup parameter
| Env variable | Default value | Example value | Required |
|:------------:|:-------------:|:-------------:|:--------:|
Expand Down