services: db: container_name: noteflow-postgres image: pgvector/pgvector:pg15 restart: unless-stopped environment: POSTGRES_DB: ${POSTGRES_DB:-noteflow} POSTGRES_USER: ${POSTGRES_USER:-noteflow} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-noteflow} volumes: - noteflow_pg_data:/var/lib/postgresql/data ports: - "5432:5432" healthcheck: test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-noteflow} -d ${POSTGRES_DB:-noteflow}"] interval: 5s timeout: 5s retries: 10 networks: - noteflow-net redis: container_name: noteflow-redis image: redis:7-alpine restart: unless-stopped ports: - "6379:6379" volumes: - noteflow_redis_data:/data command: redis-server --appendonly yes healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 5s timeout: 5s retries: 10 networks: - noteflow-net qdrant: container_name: noteflow-qdrant image: qdrant/qdrant:v1.12.1 restart: unless-stopped ports: - "6333:6333" - "6334:6334" volumes: - noteflow_qdrant_data:/qdrant/storage environment: QDRANT__SERVICE__GRPC_PORT: 6334 healthcheck: test: ["CMD-SHELL", "bash -c '