docker
Installation
SKILL.md
Docker Skill
Sorcha uses Docker for local development and production deployment. Services run as Ubuntu Chiseled (distroless) containers with multi-stage builds. Docker Compose orchestrates the full stack with health checks, shared networks, and volume mounts for persistence.
Quick Start
Start Full Stack
# Start all services with infrastructure
docker-compose up -d
# View logs for specific service
docker-compose logs -f blueprint-service
# Rebuild single service after code changes
docker-compose build blueprint-service && docker-compose up -d --force-recreate blueprint-service
Related skills