From 04ed8549542003dc4ad6b3e0423b3d8df6abd248 Mon Sep 17 00:00:00 2001 From: jordan Date: Sat, 7 Mar 2026 01:12:31 -0700 Subject: [PATCH] fix: use bash for entrypoint (wait -n requires bash, not sh) --- scripts/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/entrypoint.sh b/scripts/entrypoint.sh index a02d74e..629aadc 100644 --- a/scripts/entrypoint.sh +++ b/scripts/entrypoint.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # StemeDB cluster entrypoint — runs both stemedb-api (storage) and stemedb-node (gateway/SWIM). # # In single-node mode (STEMEDB_CLUSTER_MODE unset or "false"), only stemedb-api runs.