- web/: Local chat UI (Express + WS → Codex bridge) - openwebui/: Preset, pipelines, knowledge manifest - Dockerfile + docker-compose.yml - Updated README with 3 frontend options - CLI-agnostic: works with Codex, Claude Code, Kiro, Gemini
21 lines
475 B
YAML
21 lines
475 B
YAML
services:
|
|
forge:
|
|
build: .
|
|
container_name: forge-console
|
|
ports:
|
|
- "3000:3000"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
# Mount skills and config so changes persist without rebuild
|
|
- ./skills:/app/skills
|
|
- ./config:/app/config
|
|
- ./bmad:/app/bmad
|
|
- ./.standards:/app/.standards
|
|
# Mount mcporter auth cache so OAuth tokens persist
|
|
- mcporter-auth:/root/.mcporter
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
mcporter-auth:
|