persisting in postgres

This commit is contained in:
2026-03-06 15:26:55 -07:00
parent b9db6408b1
commit 8059048db2
13 changed files with 255 additions and 46 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
db:
image: postgres:17
environment:
POSTGRES_USER: elixir_ai
POSTGRES_PASSWORD: elixir_ai
POSTGRES_DB: elixir_ai_dev
ports:
- 5432:5432
volumes:
- ./schema.sql:/docker-entrypoint-initdb.d/schema.sql