The project was previously called "super-multica" but has been renamed to "multica". Update all remaining references in docker-compose, goreleaser, README, and local development docs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
321 B
YAML
16 lines
321 B
YAML
name: multica
|
|
|
|
services:
|
|
postgres:
|
|
image: pgvector/pgvector:pg17
|
|
environment:
|
|
POSTGRES_DB: multica
|
|
POSTGRES_USER: ${POSTGRES_USER:-multica}
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-multica}
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
pgdata:
|