booth-pic-api / docker-compose.yml
github-actions
Deploy to HF (clean history with LFS)
e666301
services:
qdrant:
image: qdrant/qdrant:latest
container_name: booth-pic-qdrant
ports:
- "6333:6333"
- "6334:6334"
volumes:
- ./qdrant_data:/qdrant/storage
restart: always
db:
image: postgres:15-alpine
container_name: booth-pic-db
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: booth_pic
ports:
- "5432:5432"
volumes:
- ./postgres_data:/var/lib/postgresql/data
restart: always