From c10142a51dabed78c1407961df2179fa34d57e3a Mon Sep 17 00:00:00 2001 From: BlackEagle Date: Fri, 26 Jun 2026 11:30:28 +0200 Subject: [PATCH] chore: use service to start rabbitmq-server this makes it consistent with postgresql and redis-server Signed-off-by: BlackEagle --- build/scripts/standalone/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/standalone/entrypoint.sh b/build/scripts/standalone/entrypoint.sh index 7fea010373..1282429356 100644 --- a/build/scripts/standalone/entrypoint.sh +++ b/build/scripts/standalone/entrypoint.sh @@ -423,7 +423,7 @@ fi # -------------------------------------------------------------------- [ "$DB_HOST" = "localhost" ] && service postgresql start [ "$AMQP_HOST" = "localhost" ] && [ -z "${AMQP_URI:-}" ] && \ - runuser -u rabbitmq -- rabbitmq-server -detached + service rabbitmq-server start [ "$REDIS_SERVER_HOST" = "localhost" ] && service redis-server start service nginx start