fix(docs): correct FlowMonk compose build examples

This commit is contained in:
saravanakumardb1 2026-03-23 18:50:38 -07:00
parent adfa5b9fec
commit fdf80d6470

View File

@ -183,7 +183,7 @@ Create `docker-compose.ecosystem.yml` at workspace root (`~/code/mygh/`) that co
# The prep flow must preserve each repo's package-manager semantics while rewriting
# file: refs for Docker contexts.
for repo in learning_voice_ai_agent learning_multimodal_memory_agents learning_ai_clock \
learning_ai_jarvis_jr learning_ai_peakpulse learning_ai_flowmonk \
learning_ai_jarvis_jr learning_ai_peakpulse \
learning_ai_fastgap learning_ai_notes learning_ai_trails learning_ai_local_memory_gpt; do
(cd $repo && ./scripts/docker-prep.sh)
done
@ -191,8 +191,8 @@ done
```yaml
# ~/code/mygh/docker-compose.ecosystem.yml
# NOTE: All product backends/webs have file: deps to @bytelyst/* packages.
# You MUST run docker-prep.sh for each repo first (see above).
# NOTE: Most product backends/webs still rely on file: deps to @bytelyst/* packages.
# Run docker-prep.sh only for the repos that still require tarball prep (see above).
services:
# ══════════════════════════════════════════════════════
@ -368,7 +368,9 @@ services:
restart: unless-stopped
flowmonk-backend:
build: ./learning_ai_flowmonk/backend
build:
context: ./learning_ai_flowmonk
dockerfile: backend/Dockerfile
ports: ['4017:4017']
env_file: [.env.ecosystem]
environment: { PORT: '4017', SERVICE_NAME: flowmonk-backend }
@ -486,7 +488,9 @@ services:
restart: unless-stopped
flowmonk-web:
build: ./learning_ai_flowmonk/web
build:
context: ./learning_ai_flowmonk
dockerfile: web/Dockerfile
ports: ['3053:3000'] # Internal 3000 → external 3053
environment:
NEXT_PUBLIC_BACKEND_URL: http://flowmonk-backend:4017