mnemosyne/docker-compose.yml
Joey Yakimowich-Payne ed0361f97c chore: initialize project scaffold and config
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-03-13 11:40:35 -06:00

20 lines
463 B
YAML

services:
postgres:
image: pgvector/pgvector:pg16
environment:
POSTGRES_DB: mnemosyne
POSTGRES_USER: mnemosyne
POSTGRES_PASSWORD: mnemosyne_dev
ports:
- "5433:5432"
volumes:
- pgdata:/var/lib/postgresql/data
- ./sql/init.sql:/docker-entrypoint-initdb.d/01-init.sql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U mnemosyne"]
interval: 5s
timeout: 5s
retries: 5
volumes:
pgdata: