Skip to content

Commit 7afae45

Browse files
committed
Fix db user
1 parent e836d0c commit 7afae45

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docker-compose-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ services:
4141
POSTGRES_USER: ${DB_USER}
4242
POSTGRES_PASSWORD: ${DB_PASSWORD}
4343
healthcheck:
44-
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER}"]
44+
test: ["CMD-SHELL", "pg_isready -U ${DB_USER}"]
4545
interval: 5s
4646
volumes:
4747
- db-data:/var/lib/postgresql/data

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ services:
3434
POSTGRES_USER: ${DB_USER}
3535
POSTGRES_PASSWORD: ${DB_PASSWORD}
3636
healthcheck:
37-
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER}"]
37+
test: ["CMD-SHELL", "pg_isready -U ${DB_USER}"]
3838
interval: 5s
3939
volumes:
4040
- db-data:/var/lib/postgresql/data

0 commit comments

Comments
 (0)