-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
71 lines (66 loc) · 1.52 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
version: "3"
services:
graph_db:
image: neo4j:5.8.0
volumes:
- graph_data:/data
- graph_plugin:/plugins
ports:
- "7474:7474"
- "7687:7687"
environment:
# user is neo4j
- NEO4J_AUTH=neo4j/verystrongpassword
- NEO4J_apoc_export_file_enabled=true
- NEO4J_apoc_import_file_enabled=true
- NEO4J_apoc_import_file_use__neo4j__config=true
- NEO4J_dbms_security_allow__csv__import__from__file__urls=true
- NEO4J_PLUGINS=["apoc"]
container_name: stkg_graph_db
networks:
stkg:
aliases:
- graph-db.local
mem_graph_db:
image: memgraph/memgraph-platform:latest
ports:
- "7688:7687"
- "7445:7444"
- "3000:3000"
container_name: stkg_mem_graph_db
networks:
stkg:
aliases:
- mem-graph-db.local
volumes:
- mg_lib:/var/lib/memgraph
- mg_log:/var/log/memgraph
- mg_etc:/etc/memgraph
environment:
- MEMGRAPH="--log-level=TRACE"
- MGCONSOLE="--username memgraph --password verystrongpassword"
entrypoint: [ "/usr/bin/supervisord" ]
db:
image: postgis/postgis
volumes:
- pg_data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=stkg
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=stkgpw
ports:
- "5432:5432"
networks:
stkg:
aliases:
- stkg-db.local
container_name: stkg_db
volumes:
graph_data:
graph_plugin:
pg_data:
mg_lib:
mg_log:
mg_etc:
networks:
stkg: null