mirror of
https://github.com/run-llama/ai-engineer-workshop.git
synced 2026-07-01 20:54:01 -04:00
14 lines
268 B
YAML
14 lines
268 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
postgres:
|
|
image: ankane/pgvector
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- ./postgres_data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_DB=postgres
|