-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathdocker-compose-cpu-embeddings.yml
More file actions
43 lines (37 loc) · 1.09 KB
/
docker-compose-cpu-embeddings.yml
File metadata and controls
43 lines (37 loc) · 1.09 KB
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
33
34
35
36
37
38
39
40
41
42
43
version: '3'
services:
splade-doc:
image: ghcr.io/huggingface/text-embeddings-inference:cpu-1.4
command: --model-id naver/efficient-splade-VI-BT-large-doc --revision main --pooling splade
ports:
- "4000:80"
volumes:
- ./data:/data
splade-query:
image: ghcr.io/huggingface/text-embeddings-inference:cpu-1.4
command: --model-id naver/efficient-splade-VI-BT-large-query --revision main --pooling splade
ports:
- "5000:80"
volumes:
- ./data:/data
jina:
image: ghcr.io/huggingface/text-embeddings-inference:cpu-1.5
command: --model-id jinaai/jina-embeddings-v2-base-en --revision main
ports:
- "6000:80"
volumes:
- ./data:/data
bgem3:
image: ghcr.io/huggingface/text-embeddings-inference:cpu-1.2
command: --model-id BAAI/bge-m3 --revision main
ports:
- "7000:80"
volumes:
- ./data:/data
reranker:
image: ghcr.io/huggingface/text-embeddings-inference:cpu-1.8.2
command: --model-id BAAI/bge-reranker-base --revision main
ports:
- "8000:80"
volumes:
- ./data:/data