Spaces:
Runtime error
Runtime error
File size: 330 Bytes
d132e19 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
services:
db:
hostname: db
image: pgvector/pgvector:pg16
ports:
- 5432:5432
restart: always
environment:
- POSTGRES_DB=vectordb
- POSTGRES_USER=user
- POSTGRES_PASSWORD=password
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
- ./init.sql:/docker-entrypoint-initdb.d/init.sql |