From 60f3fcfa60d5a06939894ef79f7886fa2bb86a92 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Fri, 27 Feb 2026 13:54:36 +0100 Subject: [PATCH] fix: update entrypoint to specify blob, queue, and table host addresses --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index f4fc28e..5c61fd7 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -149,5 +149,5 @@ fi exec node /app/azurite/src/azurite.js \ --disableTelemetry \ --location "$AZURITE_DIR" \ - "${CERT_ARGS[@]}" \ - "${OAUTH_ARGS[@]}" + --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0 \ + "${CERT_ARGS[@]}" "${OAUTH_ARGS[@]}"