mirror of
https://github.com/sakaljurgis/best-choice.git
synced 2026-07-08 21:47:40 +00:00
19 lines
331 B
YAML
19 lines
331 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
postgres:
|
|
image: pgvector/pgvector:pg16
|
|
container_name: bc_pg
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_DB: bc_dev
|
|
POSTGRES_USER: admin
|
|
POSTGRES_PASSWORD: admin
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
pgdata:
|