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: