initial commit

This commit is contained in:
Zoe
2026-01-11 05:04:29 -06:00
commit 0877cc10bd
65 changed files with 5009 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
name: veridian-development
services:
postgresql:
image: pgvector/pgvector:pg17
container_name: veridian-postgres
ports:
- "5432:5432"
volumes:
- "data:/var/lib/postgresql/data"
environment:
- "POSTGRES_DB=${VERIDIAN_DB_NAME}"
- "POSTGRES_PASSWORD=${POSTGRES_PASSWORD}"
env_file:
- .env
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
restart: always
networks:
- veridian-network
volumes:
data:
driver: local
networks:
veridian-network:
driver: bridge