Skip to content

Commit 64070f9

Browse files
committed
fix: update postgres to latest stable version
1 parent 7d052fa commit 64070f9

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

docker-compose.db.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
services:
22
db:
3-
image: postgres:16.4-alpine
3+
image: postgres:17.6-alpine
44
container_name: quibble_db
55
restart: always
66
environment:
7-
POSTGRES_DB: quibble_db
8-
POSTGRES_PASSWORD: quibble_pass
7+
POSTGRES_PASSWORD: postgres
98
ports:
109
- 5432:5432
1110
volumes:
12-
- pg_data:/var/lib/postgresql/data
11+
- db_data:/var/lib/postgresql/data
1312

1413
volumes:
15-
pg_data:
14+
db_data:

0 commit comments

Comments
 (0)