fix(docs): correct FlowMonk compose build examples
This commit is contained in:
parent
adfa5b9fec
commit
fdf80d6470
@ -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
|
# The prep flow must preserve each repo's package-manager semantics while rewriting
|
||||||
# file: refs for Docker contexts.
|
# file: refs for Docker contexts.
|
||||||
for repo in learning_voice_ai_agent learning_multimodal_memory_agents learning_ai_clock \
|
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
|
learning_ai_fastgap learning_ai_notes learning_ai_trails learning_ai_local_memory_gpt; do
|
||||||
(cd $repo && ./scripts/docker-prep.sh)
|
(cd $repo && ./scripts/docker-prep.sh)
|
||||||
done
|
done
|
||||||
@ -191,8 +191,8 @@ done
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# ~/code/mygh/docker-compose.ecosystem.yml
|
# ~/code/mygh/docker-compose.ecosystem.yml
|
||||||
# NOTE: All product backends/webs have file: deps to @bytelyst/* packages.
|
# NOTE: Most product backends/webs still rely on file: deps to @bytelyst/* packages.
|
||||||
# You MUST run docker-prep.sh for each repo first (see above).
|
# Run docker-prep.sh only for the repos that still require tarball prep (see above).
|
||||||
|
|
||||||
services:
|
services:
|
||||||
# ══════════════════════════════════════════════════════
|
# ══════════════════════════════════════════════════════
|
||||||
@ -368,7 +368,9 @@ services:
|
|||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
flowmonk-backend:
|
flowmonk-backend:
|
||||||
build: ./learning_ai_flowmonk/backend
|
build:
|
||||||
|
context: ./learning_ai_flowmonk
|
||||||
|
dockerfile: backend/Dockerfile
|
||||||
ports: ['4017:4017']
|
ports: ['4017:4017']
|
||||||
env_file: [.env.ecosystem]
|
env_file: [.env.ecosystem]
|
||||||
environment: { PORT: '4017', SERVICE_NAME: flowmonk-backend }
|
environment: { PORT: '4017', SERVICE_NAME: flowmonk-backend }
|
||||||
@ -486,7 +488,9 @@ services:
|
|||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
flowmonk-web:
|
flowmonk-web:
|
||||||
build: ./learning_ai_flowmonk/web
|
build:
|
||||||
|
context: ./learning_ai_flowmonk
|
||||||
|
dockerfile: web/Dockerfile
|
||||||
ports: ['3053:3000'] # Internal 3000 → external 3053
|
ports: ['3053:3000'] # Internal 3000 → external 3053
|
||||||
environment:
|
environment:
|
||||||
NEXT_PUBLIC_BACKEND_URL: http://flowmonk-backend:4017
|
NEXT_PUBLIC_BACKEND_URL: http://flowmonk-backend:4017
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user