forked from tensorlakeai/indexify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
50 lines (50 loc) · 1.06 KB
/
docker-compose.yaml
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
44
45
46
47
48
49
50
version: "3"
networks:
server:
services:
indexify:
image: tensorlake/indexify
entrypoint: [ "/indexify/docker_compose_start.sh" ]
ports:
- 8900:8900
- 8950:8950
environment:
- DATABASE_URL=postgres://postgres:postgres@postgres/indexify
- INDEXIFY_DB_URL=postgres://postgres:postgres@postgres/indexify
- INDEXIFY_COORDINATOR_ADDR=localhost:8950
depends_on:
- postgres
networks:
server:
aliases:
- indexify
volumes:
- data:/tmp/indexify-blob-storage
postgres:
image: ankane/pgvector
restart: always
ports:
- 5432
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=indexify
networks:
server:
aliases:
- postgres
embedding-extractor:
image: tensorlake/minilm-l6
command:
[
"join-server",
"--coordinator-addr",
"indexify:8950",
"--ingestion-addr",
"indexify:8900"
]
networks:
server:
volumes:
- data:/tmp/indexify-blob-storage
volumes:
data: