voice-assistant/agent-api/docker-compose.yml
Pierre Wessman 7b45d19308 init
2025-01-16 16:22:58 +01:00

15 lines
269 B
YAML

version: '3.8'
services:
db:
image: pgvector/pgvector:pg16
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
ports:
- '5433:5432'
volumes:
- db:/var/lib/postgresql/data
volumes:
db:
driver: local