-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose-test.yml
84 lines (78 loc) · 3.28 KB
/
docker-compose-test.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
services:
cypherbench-company:
container_name: cypherbench-company
image: megagonlabs/neo4j-with-loader:2.4
volumes:
- ../benchmark/graphs/simplekg/company_simplekg.json:/init/graph.json
ports:
- 15062:7687
environment:
NEO4J_AUTH: $NEO4J_USERNAME/$NEO4J_PASSWORD
NEO4J_server_http__enabled__modules: "TRANSACTIONAL_ENDPOINTS,UNMANAGED_EXTENSIONS,ENTERPRISE_MANAGEMENT_ENDPOINTS"
NEO4J_PLUGINS: '["apoc", "graph-data-science"]'
cypherbench-fictional-character:
container_name: cypherbench-fictional-character
image: megagonlabs/neo4j-with-loader:2.4
volumes:
- ../benchmark/graphs/simplekg/fictional_character_simplekg.json:/init/graph.json
ports:
- 15063:7687
environment:
NEO4J_AUTH: $NEO4J_USERNAME/$NEO4J_PASSWORD
NEO4J_server_http__enabled__modules: "TRANSACTIONAL_ENDPOINTS,UNMANAGED_EXTENSIONS,ENTERPRISE_MANAGEMENT_ENDPOINTS"
NEO4J_PLUGINS: '["apoc", "graph-data-science"]'
cypherbench-flight-accident:
container_name: cypherbench-flight-accident
image: megagonlabs/neo4j-with-loader:2.4
volumes:
- ../benchmark/graphs/simplekg/flight_accident_simplekg.json:/init/graph.json
ports:
- 15064:7687
environment:
NEO4J_AUTH: $NEO4J_USERNAME/$NEO4J_PASSWORD
NEO4J_server_http__enabled__modules: "TRANSACTIONAL_ENDPOINTS,UNMANAGED_EXTENSIONS,ENTERPRISE_MANAGEMENT_ENDPOINTS"
NEO4J_PLUGINS: '["apoc", "graph-data-science"]'
cypherbench-geography:
container_name: cypherbench-geography
image: megagonlabs/neo4j-with-loader:2.4
volumes:
- ../benchmark/graphs/simplekg/geography_simplekg.json:/init/graph.json
ports:
- 15065:7687
environment:
NEO4J_AUTH: $NEO4J_USERNAME/$NEO4J_PASSWORD
NEO4J_server_http__enabled__modules: "TRANSACTIONAL_ENDPOINTS,UNMANAGED_EXTENSIONS,ENTERPRISE_MANAGEMENT_ENDPOINTS"
NEO4J_PLUGINS: '["apoc", "graph-data-science"]'
cypherbench-movie:
container_name: cypherbench-movie
image: megagonlabs/neo4j-with-loader:2.4
volumes:
- ../benchmark/graphs/simplekg/movie_simplekg.json:/init/graph.json
ports:
- 15066:7687
environment:
NEO4J_AUTH: $NEO4J_USERNAME/$NEO4J_PASSWORD
NEO4J_server_http__enabled__modules: "TRANSACTIONAL_ENDPOINTS,UNMANAGED_EXTENSIONS,ENTERPRISE_MANAGEMENT_ENDPOINTS"
NEO4J_PLUGINS: '["apoc", "graph-data-science"]'
cypherbench-nba:
container_name: cypherbench-nba
image: megagonlabs/neo4j-with-loader:2.4
volumes:
- ../benchmark/graphs/simplekg/nba_simplekg.json:/init/graph.json
ports:
- 15067:7687
environment:
NEO4J_AUTH: $NEO4J_USERNAME/$NEO4J_PASSWORD
NEO4J_server_http__enabled__modules: "TRANSACTIONAL_ENDPOINTS,UNMANAGED_EXTENSIONS,ENTERPRISE_MANAGEMENT_ENDPOINTS"
NEO4J_PLUGINS: '["apoc", "graph-data-science"]'
cypherbench-politics:
container_name: cypherbench-politics
image: megagonlabs/neo4j-with-loader:2.4
volumes:
- ../benchmark/graphs/simplekg/politics_simplekg.json:/init/graph.json
ports:
- 15068:7687
environment:
NEO4J_AUTH: $NEO4J_USERNAME/$NEO4J_PASSWORD
NEO4J_server_http__enabled__modules: "TRANSACTIONAL_ENDPOINTS,UNMANAGED_EXTENSIONS,ENTERPRISE_MANAGEMENT_ENDPOINTS"
NEO4J_PLUGINS: '["apoc", "graph-data-science"]'