From e9ecc9d19d9202d50a28ae532eab57839f43a676 Mon Sep 17 00:00:00 2001 From: Pavel Fedin Date: Wed, 24 Jun 2026 17:42:32 +0300 Subject: [PATCH] declared in .env.example to avoid build issues DOCKER_BUILDKIT=1 COMPOSE_PARALLEL_LIMIT=1 --- .env.example | 8 +++++++- README.md | 3 +++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index c2c12bb..659bcb3 100644 --- a/.env.example +++ b/.env.example @@ -1,3 +1,9 @@ +### Build parameter variables ############################################# +# enabled by default for modern versions docker/compose +DOCKER_BUILDKIT=1 +# for some reason unset parallel limit causing build failures +COMPOSE_PARALLEL_LIMIT=1 + # Enter your gateway IP (your host IP under from docker containers) - that need for correctly worked xdebug from cli # For detect that IP use: docker network inspect structure_default | grep Gateway | xargs | cut -d ' ' -f2 # For UFW allowing ports on the host system: ufw allow to 172.18.0.1 port 9000,9003 @@ -36,4 +42,4 @@ INTAI_DOCKER_NETWORK=intai-docker_default # Порт на хосте для MCP (SSE); тот же порт должен быть в .cursor/mcp.json (url). MCP_MARIADB_PORT=8765 # Опционально: зафиксировать ревизию MariaDB/mcp при сборке образа (ветка или тег). -# MARIADB_MCP_GIT_REF=main \ No newline at end of file +# MARIADB_MCP_GIT_REF=main diff --git a/README.md b/README.md index d1de0c2..b0e7443 100644 --- a/README.md +++ b/README.md @@ -147,3 +147,6 @@ If you want build own workspace image. You need export environment variable `export DOCKER_BUILDKIT=1` more info https://github.com/edrevo/dockerfile-plus + +Build may fail without this +`export COMPOSE_PARALLEL_LIMIT=1`