Skip to content

Commit fdbbc96

Browse files
chore(deps): update postgres docker tag to v18
1 parent b31d057 commit fdbbc96

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

tests/docker-compose-performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ services:
4141
retries: 5
4242

4343
postgres-without-extensions:
44-
image: postgres:17.7
44+
image: postgres:18.1
4545
restart: always
4646
container_name: "postgresql-noext"
4747
environment:

tests/docker-compose-pgbouncer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
db:
33
container_name: db
4-
image: postgres:16-alpine
4+
image: postgres:18-alpine
55
volumes:
66
- pg_data:/var/lib/postgresql/data
77
environment:

tests/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
postgres-9-6:
3-
image: postgres:9.6
3+
image: postgres:18.1
44
restart: always
55
container_name: postgres-9-6
66
environment:
@@ -9,7 +9,7 @@ services:
99
POSTGRES_DB: demo
1010

1111
postgres-latest-supported:
12-
image: postgres:17.7
12+
image: postgres:18.1
1313
restart: always
1414
container_name: postgres-latest-supported
1515
environment:

tests/perf-testing/latest_supported/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM postgres:17.7
1+
FROM postgres:18.1
22

33
# Dependencies
44
RUN apt-get update && apt-get install -y \

tests/perf-testing/oldest_supported/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM postgres:13
1+
FROM postgres:18
22

33
# Dependencies
44
RUN apt-get update && apt-get install -y \

0 commit comments

Comments
 (0)