-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
86 lines (81 loc) · 1.86 KB
/
docker-compose.yml
File metadata and controls
86 lines (81 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
services:
graphrag:
image: tigergraph/graphrag:latest
platform: linux/amd64
container_name: graphrag
build:
context: .
dockerfile: graphrag/Dockerfile
ports:
- 8000:8000
depends_on:
- graphrag-ecc
- chat-history
# - tigergraph
environment:
SERVER_CONFIG: "/code/configs/server_config.json"
LOGLEVEL: "INFO"
USE_CYPHER: "true"
volumes:
- ./configs/:/code/configs
graphrag-ecc:
image: tigergraph/graphrag-ecc:latest
platform: linux/amd64
container_name: graphrag-ecc
build:
context: .
dockerfile: ecc/Dockerfile
ports:
- 8001:8001
environment:
SERVER_CONFIG: "/code/configs/server_config.json"
LOGLEVEL: "INFO"
INIT_EMBED_STORE: "false"
volumes:
- ./configs/:/code/configs
chat-history:
image: tigergraph/chat-history:latest
platform: linux/amd64
container_name: chat-history
build:
context: chat-history/
dockerfile: Dockerfile
ports:
- 8002:8002
environment:
CONFIG_FILES: "/configs/server_config.json"
LOGLEVEL: "INFO"
volumes:
- ./configs/:/configs
graphrag-ui:
image: tigergraph/graphrag-ui:latest
platform: linux/amd64
container_name: graphrag-ui
build:
context: graphrag-ui
dockerfile: Dockerfile
ports:
- 3000:3000
depends_on:
- graphrag
nginx:
container_name: nginx
image: nginx
volumes:
- ./configs/nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- "80:80"
depends_on:
- graphrag-ui
- graphrag
# tigergraph:
# image: tigergraph/community:4.2.2
# container_name: tigergraph
# platform: linux/amd64
# ports:
# - "14240:14240"
# volumes:
# - tigergraph_data:/home/tigergraph/tigergraph/data
#
# volumes:
# tigergraph_data: