docs: document orchestrator env export

This commit is contained in:
john
2026-07-24 21:57:43 +08:00
parent 3e57f85d3a
commit ff9c68e57f
+12
View File
@@ -117,6 +117,18 @@ docker compose ps
curl http://127.0.0.1:8093/ready
```
When Portal or the Shadow smoke process runs outside Compose, export the same
service token into the child process environment. Plain `source` does not export
new shell variables by itself:
```bash
set -a
source deploy/orchestrator/.env
set +a
export MEMIND_ORCHESTRATOR_URL=http://127.0.0.1:8093
pnpm dev
```
The Compose project:
- publishes only the Orchestrator port on loopback;