v2: Forge Console + Open WebUI artifacts + Docker
- 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
This commit is contained in:
20
docker-compose.yml
Normal file
20
docker-compose.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
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:
|
||||
Reference in New Issue
Block a user