Skip to content

Commit

Permalink
fix(docker-compose): wrong username used in pg healthcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
hbollon committed Feb 8, 2022
1 parent b7a9ac8 commit b219b9e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Expand Up @@ -31,7 +31,7 @@ services:
volumes:
- tb-data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
test: ["CMD-SHELL", "pg_isready -U gorm"]
interval: 10s
timeout: 5s
retries: 5
Expand Down
2 changes: 1 addition & 1 deletion test/multiple-minio-buckets/docker-compose.yml
Expand Up @@ -57,7 +57,7 @@ services:
volumes:
- tb-data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
test: ["CMD-SHELL", "pg_isready -U gorm"]
interval: 10s
timeout: 5s
retries: 5
Expand Down
2 changes: 1 addition & 1 deletion test/single-minio-bucket/docker-compose.yml
Expand Up @@ -50,7 +50,7 @@ services:
volumes:
- tb-data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
test: ["CMD-SHELL", "pg_isready -U gorm"]
interval: 10s
timeout: 5s
retries: 5
Expand Down

0 comments on commit b219b9e

Please sign in to comment.