Skip to content

Commit

Permalink
Explicitly start in user managed mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
epugh committed Oct 10, 2024
1 parent 0d25dca commit e44df70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solr/docker/scripts/solr-fg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e44df70

Please sign in to comment.