File size: 535 Bytes
7ca2743 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
version: '3.8'
services:
qdrant:
image: qdrant/qdrant:lastest
container_name: qdrant
ports:
- "6333:6333"
volumes:
- qdrant_storage:/qdrant/storage
app:
build:
context: ./
dockerfile: Dockerfile
args:
USE_CUDA: "true"
USE_CUDA_VER: "cu124"
container_name: pipelines
environment:
ENV: prod
HOST: "0.0.0.0"
PORT: "9099"
ports:
- "9099:9099"
volumes:
- .:/app
depends_on:
- qdrant
volumes:
qdrant_storage: |