-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathdocker-compose-legacy.yml
More file actions
43 lines (43 loc) · 1.02 KB
/
docker-compose-legacy.yml
File metadata and controls
43 lines (43 loc) · 1.02 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: '2'
services:
kg:
build: .
image: maayanlab/knowledge_graph:2.0.16
platform: linux/x86_64
env_file: .env
ports:
- 3000:3000
ui:
build:
context: .
dockerfile: ./Dockerfile.next
image: maayanlab/cfde-gse:2.0.0
platform: linux/x86_64
env_file: .env
ports:
- 3000:3000
ingest:
build: scripts/ingestion
image: maayanlab/kg-ingest:0.1.5
platform: linux/x86_64
env_file: .env
neo4j:
image: maayanlab/neo4j:mac-arm
user: "${UID}:${GID}"
environment:
NEO4JLABS_PLUGINS: '["apoc", "graph-data-science", "n10s"]'
NEO4J_AUTH: ${NEO4J_USER}/${NEO4J_PASSWORD}
NEO4J_dbms_memory_heap_max__size: ${NEO4J_dbms_memory_heap_max__size}
NEO4J_dbms_memory_heap_initial__size: ${NEO4J_dbms_memory_heap_initial__size}
ports:
- 7474:7474
- 7687:7687
volumes:
- ./data-reprotox-v2/neo4j:/data
networks:
internal:
aliases:
- neo4j
# Internal docker networks
networks:
internal: