feat: add healthcheck to minio

This commit is contained in:
naterfute 2025-04-06 00:57:41 -07:00
parent 3743e08bc5
commit 623a850976
No known key found for this signature in database
GPG Key ID: 8DB2A1C41F6F6CA4

View File

@ -116,13 +116,25 @@ services:
- uploads:/export
env_file:
- .env
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
timeout: 20s
retries: 3
start_period: 15s
proxy:
image: makeplane/plane-proxy:${APP_RELEASE:-v0.25.3}
depends_on:
- web
- api
- space
web:
condition: service_started
api:
condition: service_started
space:
condition: service_started
plane-minio:
condition: service_healthy
plane-db:
condition: service_started
env_file:
- .env