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