18 lines
393 B
YAML
18 lines
393 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
pgvector:
|
|
image: pgvector/pgvector:pg17
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
POSTGRES_DATABASE: postgres
|
|
POSTGRES_PASSWORD: '123456'
|
|
volumes:
|
|
- ./.postgres/data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: [CMD-SHELL, pg_isready -d $$POSTGRES_DB -U $$POSTGRES_USER]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|