v1.12 track A: container guidance + skills

This commit is contained in:
2026-05-21 15:11:04 +00:00
parent ab01e04d77
commit a2e2481ef9
11 changed files with 482 additions and 79 deletions

View File

@@ -7,6 +7,7 @@ services:
- "100.114.205.53:9500:3000"
env_file: .env
environment:
CONTAINER_GUIDANCE_FILE: /app/BOOCHAT.md
DATABASE_URL: postgres://boocode:${POSTGRES_PASSWORD}@boocode_db:5432/boocode
volumes:
- /opt:/opt
@@ -14,6 +15,10 @@ services:
- ./secrets/boocode_gitea:/root/.ssh/id_ed25519:ro
- ./data:/data
- /opt/skills:/data/skills
# v1.12: bind-mount BOOCHAT.md so host-side edits land in the container
# without a rebuild. system-prompt.ts mtime-watch picks up changes on the
# next chat turn. Read-only — the chat surface must never write here.
- /opt/boocode/BOOCHAT.md:/app/BOOCHAT.md:ro
depends_on:
- boocode_db
networks: