# Minimal compose for local dev — just the data stores # Usage: docker compose -f docker-compose.dev.yml up -d version: "3.9" services: postgres: image: pgvector/pgvector:pg16 environment: - POSTGRES_USER=fracta - POSTGRES_PASSWORD=devpass - POSTGRES_DB=fractafrag volumes: - pgdata:/var/lib/postgresql/data - ./db/init.sql:/docker-entrypoint-initdb.d/01-init.sql:ro ports: - "5432:5432" healthcheck: test: ["CMD-SHELL", "pg_isready -U fracta -d fractafrag"] interval: 5s timeout: 5s retries: 5 redis: image: redis:7-alpine command: redis-server --appendonly yes ports: - "6379:6379" healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 5s timeout: 5s retries: 5 volumes: pgdata: