Skip to content

Commit

Permalink
chore(deps): update postgres docker tag
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 13, 2025
1 parent 08ed6a9 commit bfed347
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/docker-compose-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:
retries: 5

postgres-without-extensions:
image: postgres:17.0
image: postgres:17.2
restart: always
container_name: "postgresql-noext"
environment:
Expand Down
2 changes: 1 addition & 1 deletion tests/docker-compose-pgbouncer.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
db:
container_name: db
image: postgres:16-alpine
image: postgres:17-alpine
volumes:
- pg_data:/var/lib/postgresql/data
environment:
Expand Down
4 changes: 2 additions & 2 deletions tests/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
postgres-9-6:
image: postgres:9.6
image: postgres:17.2
restart: always
container_name: postgres-9-6
environment:
Expand All @@ -9,7 +9,7 @@ services:
POSTGRES_DB: demo

postgres-latest-supported:
image: postgres:17.0
image: postgres:17.2
restart: always
container_name: postgres-latest-supported
environment:
Expand Down
2 changes: 1 addition & 1 deletion tests/perf-testing/latest_supported/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:17.0
FROM postgres:17.2

# Dependencies
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion tests/perf-testing/oldest_supported/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:13
FROM postgres:17

# Dependencies
RUN apt-get update && apt-get install -y \
Expand Down

0 comments on commit bfed347

Please sign in to comment.