Skip to content

Commit

Permalink
Fix minio healthcheck
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Chang <[email protected]>
  • Loading branch information
mocsharp committed Dec 20, 2023
1 parent f72d1b3 commit 898953f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Plugins/MinIO/Tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
version: "3.9"
services:
minio:
image: "minio/minio:RELEASE.2023-12-13T23-28-55Z"
image: "minio/minio:latest"
command: server --console-address ":9001" /data
hostname: minio
volumes:
Expand All @@ -28,7 +28,7 @@ services:
MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: minioadmin
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
test: ["CMD", "curl", "-I", "http://localhost:9000/minio/health/live"]
start_period: 10s
interval: 5s
timeout: 30s
Expand Down

0 comments on commit 898953f

Please sign in to comment.