Graduation / pipelines.yml
DuyTa's picture
Update pipelines.yml
c7b0b15 verified
version: '3.8'
services:
qdrant:
image: qdrant/qdrant:latest #duyta506/graduation:qdrant-latest
container_name: qdrant
ports:
- "6333:6333"
volumes:
- qdrant_storage:/qdrant/storage
app:
build:
context: ./
dockerfile: dockerfile
#image: pipelines:lastest
args:
USE_CUDA: "true"
USE_CUDA_VER: "cu124" ##118
container_name: pipelines
environment:
ENV: prod
HOST: "0.0.0.0"
PORT: "9099"
QDRANT_HOST: qdrant
QDRANT_PORT: 6333
ports:
- "9099:9099"
volumes:
- .:/app
depends_on:
- qdrant
volumes:
qdrant_storage: