declared in .env.example to avoid build issues
DOCKER_BUILDKIT=1 COMPOSE_PARALLEL_LIMIT=1
This commit is contained in:
@ -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
|
# 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 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
|
# 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 (SSE); тот же порт должен быть в .cursor/mcp.json (url).
|
||||||
MCP_MARIADB_PORT=8765
|
MCP_MARIADB_PORT=8765
|
||||||
# Опционально: зафиксировать ревизию MariaDB/mcp при сборке образа (ветка или тег).
|
# Опционально: зафиксировать ревизию MariaDB/mcp при сборке образа (ветка или тег).
|
||||||
# MARIADB_MCP_GIT_REF=main
|
# MARIADB_MCP_GIT_REF=main
|
||||||
|
|||||||
@ -147,3 +147,6 @@ If you want build own workspace image. You need export environment variable
|
|||||||
`export DOCKER_BUILDKIT=1`
|
`export DOCKER_BUILDKIT=1`
|
||||||
|
|
||||||
more info https://github.com/edrevo/dockerfile-plus
|
more info https://github.com/edrevo/dockerfile-plus
|
||||||
|
|
||||||
|
Build may fail without this
|
||||||
|
`export COMPOSE_PARALLEL_LIMIT=1`
|
||||||
|
|||||||
Reference in New Issue
Block a user