Commit 50499b0c authored by Doug Barrett's avatar Doug Barrett
Browse files

fix(v2/postgres): use correct edoburu/pgbouncer Docker image tag

The edoburu/pgbouncer image uses v-prefixed tags with a patch suffix
(e.g. v1.23.1-p3), not bare version numbers. Tag 1.23.1 does not
exist, which caused the CI pipeline to fail pulling the image.
parent 00901e0e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -137,7 +137,7 @@ test-integration:postgres:
        POSTGRES_USER: labkit
        POSTGRES_PASSWORD: labkit
        POSTGRES_DB: labkit_test
    - name: edoburu/pgbouncer:1.23.1
    - name: edoburu/pgbouncer:v1.23.1-p3
      alias: pgbouncer
      variables:
        DATABASE_URL: "postgres://labkit:labkit@postgres:5432/labkit_test"
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ services:
      retries: 5

  pgbouncer:
    image: edoburu/pgbouncer:1.23.1
    image: edoburu/pgbouncer:v1.23.1-p3
    depends_on:
      postgres:
        condition: service_healthy