From ed9270a0db2b3c0365c95deda3713b97e58b5ddf Mon Sep 17 00:00:00 2001 From: dsx137 <70027572+dsx137@users.noreply.github.com> Date: Wed, 1 Jul 2026 20:03:15 +0800 Subject: [PATCH] fix(build): limit docker compose parallelism --- build/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.sh b/build/build.sh index 354cd3945..ce664e4c9 100755 --- a/build/build.sh +++ b/build/build.sh @@ -44,7 +44,7 @@ run_or_print() { build_local() { echo -e "${CYAN}Building all services...${NO_COLOR}" - RELEASE="$RELEASE" docker compose -f "$COMPOSE_FILE" build + RELEASE="$RELEASE" docker compose --parallel 1 -f "$COMPOSE_FILE" build echo -e "${CYAN}Tagging compatibility images for Kubernetes...${NO_COLOR}" while IFS= read -r built_image; do