This repository has been archived on 2026-06-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
master-ai/vibn-frontend/docker-compose.local-db.yml

19 lines
489 B
YAML

# Local-only Postgres for `next dev` + NextAuth (Prisma). Not for production.
# Usage:
# docker compose -f docker-compose.local-db.yml up -d
# DATABASE_URL=postgresql://vibn:vibn@localhost:5433/vibn npx prisma db push
services:
postgres:
image: postgres:16-alpine
ports:
- "5433:5432"
environment:
POSTGRES_USER: vibn
POSTGRES_PASSWORD: vibn
POSTGRES_DB: vibn
volumes:
- vibn_pg_local:/var/lib/postgresql/data
volumes:
vibn_pg_local: