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:
|