From ccb4f22e57579f40c6a12b3ecfed2baabea3e93a Mon Sep 17 00:00:00 2001 From: friday-bot Date: Wed, 27 May 2026 17:06:45 -0600 Subject: [PATCH] fix: use 'mongo' shell for healthcheck (mongosh not in mongo:4.4) --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 44a52e2..71a9754 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -40,7 +40,7 @@ services: - stack.env command: ["--auth", "--bind_ip_all"] healthcheck: - test: ["CMD", "mongosh", "--quiet", "--eval", "db.adminCommand('ping')"] + test: ["CMD", "mongo", "--quiet", "--eval", "db.adminCommand('ping')"] interval: 10s timeout: 5s retries: 10