-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
167 lines (155 loc) · 3.92 KB
/
docker-compose.yml
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
services:
ventilator:
build: ./ventilator
ports:
- "5050:5050"
nuner:
build: ./nuner
depends_on:
- minio
- redis
- neo4j
environment:
MINIO_ENDPOINT: http://minio:9000
MINIO_ACCESS_KEY: miniouser
MINIO_SECRET_KEY: miniosecret
REDIS_URL: redis://redis:6379/0
ports:
- "5051:5051"
volumes:
- /Users/theapemachine/.cache/huggingface:/home/appuser/.cache/huggingface
# knowitall:
# build: ./knowitall
# depends_on:
# - minio
# - redis
# - neo4j
# environment:
# MINIO_ENDPOINT: http://minio:9000
# MINIO_ACCESS_KEY: miniouser
# MINIO_SECRET_KEY: miniosecret
# REDIS_URL: redis://redis:6379/0
# ports:
# - "5052:5052"
# extra_hosts:
# - "host.docker.internal:host-gateway"
# volumes:
# - /home/theapemachine/.cache/huggingface:/home/appuser/.cache/huggingface
domainator:
build: ./domainator
depends_on:
- redis
environment:
MINIO_ENDPOINT: http://minio:9000
MINIO_ACCESS_KEY: miniouser
MINIO_SECRET_KEY: miniosecret
REDIS_URL: redis://redis:6379/0
ports:
- "5053:5053"
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- /Users/theapemachine/.cache/huggingface:/home/appuser/.cache/huggingface
nuner_worker:
build: ./nuner
depends_on:
- redis
environment:
MINIO_ENDPOINT: http://minio:9000
MINIO_ACCESS_KEY: miniouser
MINIO_SECRET_KEY: miniosecret
REDIS_URL: redis://redis:6379/0
command: ["python3", "worker.py"]
volumes:
- /Users/theapemachine/.cache/huggingface:/home/appuser/.cache/huggingface
- ./nuner:/app
domainator_worker:
build: ./domainator
depends_on:
- redis
environment:
MINIO_ENDPOINT: http://minio:9000
MINIO_ACCESS_KEY: miniouser
MINIO_SECRET_KEY: miniosecret
REDIS_URL: redis://redis:6379/0
command: ["python3", "worker.py"]
volumes:
- /Users/theapemachine/.cache/huggingface:/home/appuser/.cache/huggingface
minio:
image: minio/minio
container_name: minio
ports:
- "9000:9000"
- "9001:9001"
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
MINIO_ROOT_USER: miniouser
MINIO_ROOT_PASSWORD: miniosecret
command: server /data --console-address ":9001"
volumes:
- minio_data:/data
redis:
image: redis
container_name: redis
ports:
- "6379:6379"
neo4j:
image: neo4j:latest
ports:
- "7474:7474"
- "7687:7687"
environment:
- NEO4J_AUTH=neo4j/securepassword
- NEO4J_apoc_export_file_enabled=true
- NEO4J_apoc_import_file_enabled=true
- NEO4J_apoc_import_file_use__neo4j__config=true
- NEO4J_PLUGINS=["apoc"]
volumes:
- neo4j_data:/data
- neo4j_logs:/logs
- /Users/theapemachine/data:/var/lib/neo4j/import
- neo4j_plugins:/plugins
# foucault:
# build: ./foucault
# ports:
# - "3000:3000"
# volumes:
# - ./foucault/entrypoints:/app/entrypoints
# - ./foucault/.output:/app/.output
# janusgraph:
# image: janusgraph/janusgraph:latest
# ports:
# - "8182:8182"
# environment:
# - JANUS_PROPS_TEMPLATE=cql
# - janusgraph.storage.backend=cql
# - janusgraph.storage.hostname=cassandra
# depends_on:
# - cassandra
#
# cassandra:
# image: cassandra:latest
# ports:
# - "9042:9042"
# volumes:
# - cassandra_data:/var/lib/cassandra
#
# arangodb:
# image: arangodb:latest
# environment:
# ARANGO_ROOT_PASSWORD: yourpassword
# ports:
# - "8529:8529"
# volumes:
# - arangodb_data:/var/lib/arangodb3
# - arangodb_apps_data:/var/lib/arangodb3-apps
volumes:
minio_data:
# arangodb_data:
# arangodb_apps_data:
# cassandra_data:
neo4j_data:
neo4j_logs:
neo4j_import:
neo4j_plugins: