Fixes incorrect health check db name

This commit is contained in:
2025-10-28 19:48:32 -04:00
parent d93b839873
commit 33ac15b5fb
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ services:
ports:
- "5432:5432"
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U idhan" ]
test: [ "CMD-SHELL", "pg_isready -U idhan -d idhan-db" ]
interval: 10s
timeout: 5s
retries: 5

View File

@@ -9,7 +9,7 @@ services:
volumes:
- idhan_pg18:/var/lib/postgresql
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U idhan" ]
test: [ "CMD-SHELL", "pg_isready -U idhan -d idhan-db" ]
interval: 10s
timeout: 5s
retries: 5