12 lines
280 B
YAML
12 lines
280 B
YAML
services:
|
|
pgvector:
|
|
image: 'pgvector/pgvector:pg16'
|
|
environment:
|
|
- 'POSTGRES_DB=mydatabase'
|
|
- 'POSTGRES_PASSWORD=secret'
|
|
- 'POSTGRES_USER=myuser'
|
|
labels:
|
|
- "org.springframework.boot.service-connection=postgres"
|
|
ports:
|
|
- '5432:5432'
|