3b93893618
CI / backend (pull_request) Successful in 49s
CI / frontend (pull_request) Successful in 12s
CI / format (pull_request) Successful in 50s
CI / db-tests (pull_request) Successful in 51s
Security / secrets (pull_request) Successful in 4s
Security / dependencies (pull_request) Successful in 52s
First activation slice of semantic search (docs/discovery/05+06): - EmbeddingBackfillWorker: fills Email.Embedding in small batches (32, 2s pause, newest first; subject+snippet, truncated) so interactive load is never starved. Exits immediately when the embedding provider is unavailable — AI-off deployments are untouched, Ollama hiccups back off instead of crashing the host. - compose: optional 'ollama' service under the 'ai' profile (persistent model volume, commented GPU passthrough for the RTX 3080); api gets Ai__OllamaBaseUrl pointing at it. - LiveDb test proves the worker persists 768-dim vectors against real pgvector (deterministic fake provider); LiveDb classes serialised into one xUnit collection (concurrent MigrateAsync on a fresh DB races — found while testing). Verified against REAL Ollama locally: pulled nomic-embed-text in a container and confirmed the /api/embeddings contract the provider uses returns 768-dim vectors. Full suite 55 green (4 LiveDb vs real pgvector); format clean. Next slice: hybrid RRF ranking in SearchService once embeddings exist. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
97 lines
3.3 KiB
YAML
97 lines
3.3 KiB
YAML
services:
|
|
postgres:
|
|
# pgvector-enabled Postgres 16 (semantic search). Drop-in for postgres:16 data;
|
|
# the 'vector' extension is created by the AddEmbeddingColumn migration.
|
|
image: pgvector/pgvector:pg16
|
|
environment:
|
|
POSTGRES_DB: inboxintel
|
|
POSTGRES_USER: inboxintel
|
|
# V-03: require an explicit strong password (fail fast if POSTGRES_PASSWORD is unset)
|
|
# rather than silently defaulting to a guessable one.
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?set POSTGRES_PASSWORD in deploy/.env}
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
# V-03: bind to loopback only so the database is reachable from the host for local
|
|
# tooling but NOT from other machines on the network. The api container reaches it
|
|
# over the internal compose network regardless of this published port.
|
|
ports:
|
|
- "127.0.0.1:5432:5432"
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U inboxintel"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 10
|
|
|
|
api:
|
|
build:
|
|
context: .
|
|
dockerfile: src/InboxIntel.Api/Dockerfile
|
|
environment:
|
|
ASPNETCORE_ENVIRONMENT: Production
|
|
ASPNETCORE_URLS: http://+:8080
|
|
ConnectionStrings__Postgres: "Host=postgres;Port=5432;Database=inboxintel;Username=inboxintel;Password=${POSTGRES_PASSWORD:?set POSTGRES_PASSWORD in deploy/.env}"
|
|
DataProtection__KeyPath: /keys
|
|
GoogleOAuth__ClientId: ${GOOGLE_CLIENT_ID:-}
|
|
GoogleOAuth__ClientSecret: ${GOOGLE_CLIENT_SECRET:-}
|
|
Ai__Mode: ${AI_MODE:-Disabled}
|
|
# Points at the compose 'ollama' service when the ai profile is up; harmless otherwise.
|
|
Ai__OllamaBaseUrl: ${OLLAMA_BASE_URL:-http://ollama:11434}
|
|
# Dev mode shows the dev banner and caps the initial sync. Set DEV_MODE=true
|
|
# and MAX_MESSAGES=1000 in deploy/.env to exercise it in this Docker setup.
|
|
App__DevMode: ${DEV_MODE:-false}
|
|
GmailSync__MaxMessages: ${MAX_MESSAGES:-0}
|
|
Cors__Origins__0: ${FRONTEND_ORIGIN:-http://localhost:8081}
|
|
volumes:
|
|
- keys:/keys
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
# V-08: bind to loopback so the API is not directly reachable from the network
|
|
# (only via the frontend/nginx proxy over the internal compose network). This
|
|
# prevents external clients from bypassing the proxy to spoof X-Forwarded-* headers.
|
|
ports:
|
|
- "127.0.0.1:8080:8080"
|
|
|
|
frontend:
|
|
build:
|
|
context: ./frontend
|
|
dockerfile: Dockerfile
|
|
depends_on:
|
|
- api
|
|
ports:
|
|
- "8081:80"
|
|
|
|
# Local AI (semantic search + assistants). Enable with:
|
|
# docker compose --profile ai up -d && set AI_MODE=LocalOllama in deploy/.env
|
|
# First run: docker compose exec ollama ollama pull nomic-embed-text
|
|
# GPU (RTX 3080): uncomment the deploy block to pass the GPU through.
|
|
ollama:
|
|
image: ollama/ollama
|
|
profiles: ["ai"]
|
|
volumes:
|
|
- ollama:/root/.ollama
|
|
# deploy:
|
|
# resources:
|
|
# reservations:
|
|
# devices:
|
|
# - driver: nvidia
|
|
# count: all
|
|
# capabilities: [gpu]
|
|
|
|
# Optional reverse proxy. Enable with: docker compose --profile proxy up
|
|
nginx:
|
|
image: nginx:alpine
|
|
profiles: ["proxy"]
|
|
volumes:
|
|
- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
depends_on:
|
|
- api
|
|
- frontend
|
|
ports:
|
|
- "80:80"
|
|
|
|
volumes:
|
|
pgdata:
|
|
keys:
|
|
ollama:
|