docker-pgbouncer icon indicating copy to clipboard operation
docker-pgbouncer copied to clipboard

Minimal PgBouncer image that is easy to configure

Results 43 docker-pgbouncer issues
Sort by recently updated
recently updated
newest added

Docker Version: 4.11.1 PgBouncer Version: 1.17.0 DataBase: Timescale 2.7.2-pg14 This happens every time I turn on the pc and docker starts by itself at start up, while if I do...

## Context As seen in #33, some of us were caught off guard by a recent commit that made changes to the container's behaviour while keeping the same image tag....

Since you are building pgbouncer from source, would it be possible to also produce images for arm processors? Something along the lines of how timescaledb does it: https://github.com/timescale/timescaledb-docker/blob/master/.github/workflows/docker-image.yml#L33 I guess...

Steps to reproduce: ``` docker run --rm \ -e DB_USER=****** \ -e DB_PASSWORD=******** \ -e DB_HOST=******** \ -e DB_NAME=postgres \ -p 5432:5432 \ edoburu/pgbouncer ``` Gives the following error: ```...

Started pgbouncer container with below command `docker run -d -p 6432:5432 --name pgbouncer -v /var/log/pgbouncer:/var/log/pgbouncer -v /etc/pgbouncer/:/etc/pgbouncer -v /etc/pgbouncer/pgbouncer.ini:/etc/pgbouncer/pgbouncer.ini pgbouncer ` The container start and keeps running, when i tried...

For connecting to multiple databases and controlling the user list directly, the DB_DATABASES and AUTH_USERLIST env variables may be used. ``` docker run -e DB_DATABASES='flask = host = 192.168.1.5 port=5432...

Steps to reproduce 1) Define DATABASE_URL env. variable with the password containing * sign , for example ``` DATABASE_URL=postgres://user:1*[email protected]:5432/db ``` Resulting pgbouncer.ini file will contain wrong connection parameters. This part...

This adds support for the `TIMEZONE` env var, which corresponds to the [timezone pgbouncer option](https://www.pgbouncer.org/config.html#timezone).