fix(reactive-resume): new healthcheck command for MinIO

MinIO container were not available, as they do not contain the CURL or WGET commands, but MinIO has its own verification command:
https://github.com/minio/minio/issues/18389
This commit is contained in:
Mateus Fernandes 2024-07-13 12:33:12 -03:00
parent 0f55e83591
commit b110d0c12b

View File

@ -53,7 +53,7 @@ services:
volumes:
- minio-data:/data
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:9000/minio/health/live"]
test: ["CMD", "mc", "ready", "local"]
interval: 5s
timeout: 20s
retries: 10