Skip to content

Commit

Permalink
Use pgbouncer 1.23 in docker compose.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbub committed Oct 10, 2024
1 parent 3b7ae2c commit 6ef6502
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.7"

services:
postgres:
image: "postgres:15-alpine"
Expand All @@ -11,8 +9,10 @@ services:
POSTGRES_PASSWORD: "postgres"

pgbouncer:
image: "bitnami/pgbouncer:1.22.0"
image: "bitnami/pgbouncer:1.23.0"
restart: always
ports:
- "6432:6432"
environment:
POSTGRESQL_HOST: "postgres"
POSTGRESQL_USERNAME: "postgres"
Expand All @@ -22,7 +22,7 @@ services:
depends_on:
- postgres

pgbouncerexporter:
pgbouncer_exporter:
build:
context: .
restart: always
Expand Down

0 comments on commit 6ef6502

Please sign in to comment.