arch-design-agent-skill-das.../docker-compose.yml
openclaw f12c45f692 build: add Docker deployment — Compose, Dockerfiles, Nginx config
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 17:25:02 +00:00

22 lines
398 B
YAML

services:
backend:
build: ./backend
ports:
- "8900:8900"
volumes:
- ${DESIGN_DIR:-.}:/data/design:rw
- ${CODE_DIR:-/dev/null}:/data/code:ro
- registry-data:/data/registry
environment:
- REGISTRY_PATH=/data/registry/projects.json
frontend:
build: ./frontend
ports:
- "80:80"
depends_on:
- backend
volumes:
registry-data: