From b92c179f9bc146c1c54d21fb76bbef22a500380b Mon Sep 17 00:00:00 2001 From: Alex Zaw Date: Thu, 9 Apr 2026 11:34:16 +0000 Subject: [PATCH] fix: rename healthCheck.command to healthCheck.test per Runtipi schema --- apps/onlyoffice-docs/docker-compose.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/onlyoffice-docs/docker-compose.json b/apps/onlyoffice-docs/docker-compose.json index ffc6136..36b9cfa 100644 --- a/apps/onlyoffice-docs/docker-compose.json +++ b/apps/onlyoffice-docs/docker-compose.json @@ -58,7 +58,7 @@ } ], "healthCheck": { - "command": "curl -f http://localhost/healthcheck", + "test": "curl -f http://localhost/healthcheck", "interval": "30s", "timeout": "10s", "retries": 3, @@ -81,7 +81,7 @@ } ], "healthCheck": { - "command": "pg_isready -U onlyoffice -d onlyoffice", + "test": "pg_isready -U onlyoffice -d onlyoffice", "interval": "10s", "timeout": "5s", "retries": 5, @@ -99,7 +99,7 @@ } ], "healthCheck": { - "command": "redis-cli ping", + "test": "redis-cli ping", "interval": "10s", "timeout": "5s", "retries": 5, @@ -121,7 +121,7 @@ } ], "healthCheck": { - "command": "rabbitmq-diagnostics -q ping", + "test": "rabbitmq-diagnostics -q ping", "interval": "10s", "timeout": "5s", "retries": 5,