From e44df7084c10f473e00ee979e8921a4d760c17ee Mon Sep 17 00:00:00 2001 From: Eric Pugh Date: Thu, 10 Oct 2024 12:27:49 -0600 Subject: [PATCH] Explicitly start in user managed mode. --- solr/docker/scripts/solr-fg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solr/docker/scripts/solr-fg b/solr/docker/scripts/solr-fg index ab1946d2dc3..85f0122aea1 100755 --- a/solr/docker/scripts/solr-fg +++ b/solr/docker/scripts/solr-fg @@ -36,9 +36,9 @@ if [[ -z "${TINI:-}" ]]; then fi fi if [[ "$TINI" == yes ]]; then - exec tini -- solr start -f "$@" + exec tini -- solr start --user-managed -f "$@" elif [[ "$TINI" == no ]]; then - exec solr start -f "$@" + exec solr start --user-managed -f "$@" else echo "invalid value TINI=$TINI" exit 1