mirror of
https://github.com/nexu-io/open-design.git
synced 2026-05-31 19:04:39 +07:00
27 lines
1.2 KiB
Text
27 lines
1.2 KiB
Text
# Image published by deploy/scripts/publish-images.sh.
|
|
OPEN_DESIGN_IMAGE=docker.io/vanjayak/open-design:latest
|
|
|
|
# Host port exposed on 127.0.0.1 by docker compose.
|
|
# Keep Compose bound to localhost; use an authenticated reverse proxy, SSH tunnel,
|
|
# or VPN before exposing Open Design remotely.
|
|
OPEN_DESIGN_PORT=7456
|
|
|
|
# Comma-separated browser origins allowed to call /api when deployed behind a
|
|
# domain, public IP, or reverse proxy, e.g. http://203.0.113.10:7456,https://od.example.com.
|
|
OPEN_DESIGN_ALLOWED_ORIGINS=
|
|
|
|
# REQUIRED.
|
|
# The daemon binds to 0.0.0.0 inside the container and strictly requires an API token for security.
|
|
# Generate a secure 32-byte hex token by running `openssl rand -hex 32` and paste it below.
|
|
OD_API_TOKEN=
|
|
|
|
# Container memory limit. The idle service has been verified around 18-22 MiB.
|
|
# Raise this for large exports, concurrent agent runs, or heavy upload workflows.
|
|
OPEN_DESIGN_MEM_LIMIT=384m
|
|
|
|
# Node.js heap cap inside the container.
|
|
NODE_OPTIONS=--max-old-space-size=192
|
|
|
|
# Optional Codex CLI sandbox override. Set to danger-full-access only when
|
|
# Codex fails with workspace-write sandbox setup errors inside the container.
|
|
OD_CODEX_SANDBOX=
|