Skip to content
Open
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
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.6
image: postgres:18.0
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:18-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:18.0
restart: always
container_name: postgres-9-6
environment:
Expand All @@ -9,7 +9,7 @@ services:
POSTGRES_DB: demo

postgres-latest-supported:
image: postgres:17.6
image: postgres:18.0
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.6
FROM postgres:18.0

# 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:18

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