Skip to content

Commit a7b3482

Browse files
authored
feat: upgrade postgres in composefiles to 17 (#216)
this may require manual intervention for anyone running these: you will need to create a backup, delete old database files and load from backups again
1 parent c761e19 commit a7b3482

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker-compose.build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
postgresql:
3-
image: postgres:16-alpine
3+
image: postgres:17-alpine
44
volumes:
55
- postgresql-data:/var/lib/postgresql/data
66
environment:
@@ -53,4 +53,4 @@ services:
5353
retries: 10
5454

5555
volumes:
56-
postgresql-data:
56+
postgresql-data:

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
db:
3-
image: postgres:16-alpine
3+
image: postgres:17-alpine
44
restart: always
55
environment:
66
POSTGRES_USER: postgres
@@ -12,4 +12,4 @@ services:
1212
- db-data:/var/lib/postgresql/data
1313

1414
volumes:
15-
db-data:
15+
db-data:

0 commit comments

Comments
 (0)