lectio / docker-compose.yml
adesh01's picture
feat: Lectio — HF Space deployment
14fda63
services:
db:
image: pgvector/pgvector:pg16
container_name: christianity_ai_db
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: christianity_ai
ports:
- "5433:5432"
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres -d christianity_ai"]
interval: 5s
timeout: 3s
retries: 5
volumes:
pgdata: