Skip to content

Commit

Permalink
fix: use correct healthcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
shepherdjerred committed Mar 11, 2024
1 parent 7517b4e commit df96360
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '>=1.20.4'
go-version: '>=1.20.14'

- name: Checkout code
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions docker/docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ services:
MINIO_SECRET_KEY: miniokey
command: minio server /data --console-address ":9001"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
timeout: 20s
retries: 3
test: ["CMD", "mc", "ready", "local"]
interval: 5s
timeout: 5s
retries: 5

0 comments on commit df96360

Please sign in to comment.