-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
71 lines (69 loc) · 2.05 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:
morpheus:
image: emanuelefalzone/morpheus:dda4ffc8
environment:
- NEO4J_SHOPS_URI=bolt://neo4j-shops:7687
- NEO4J_SHOPS_USERNAME=neo4j
- NEO4J_SHOPS_PASSWORD=shops
- NEO4J_NEARBY_URI=bolt://neo4j-nearby:7687
- NEO4J_NEARBY_USERNAME=neo4j
- NEO4J_NEARBY_PASSWORD=nearby
- NEO4J_COUPONS_URI=bolt://neo4j-coupons:7687
- NEO4J_COUPONS_USERNAME=neo4j
- NEO4J_COUPONS_PASSWORD=coupons
- NEO4J_NOTIFICATIONS_URI=bolt://neo4j-notifications:7687
- NEO4J_NOTIFICATIONS_USERNAME=neo4j
- NEO4J_NOTIFICATIONS_PASSWORD=notifications
- ZEPPELIN_NOTEBOOK_DIR=/notebook
ports:
- 8080:8080
volumes:
- ./notebook:/notebook
networks:
- magicworld
neo4j-shops:
image: neo4j:3.5.17
hostname: neo4j-shops
environment:
- NEO4J_AUTH=neo4j/shops
ports:
- 7474:7474
- 7687:7687
networks:
- magicworld
neo4j-nearby:
image: neo4j:3.5.17
hostname: neo4j-nearby
environment:
- NEO4J_AUTH=neo4j/nearby
- NEO4J_dbms_connector_bolt_advertised__address=:7688
ports:
- 7475:7474
- 7688:7687
networks:
- magicworld
neo4j-coupons:
image: neo4j:3.5.17
hostname: neo4j-coupons
environment:
- NEO4J_AUTH=neo4j/coupons
- NEO4J_dbms_connector_bolt_advertised__address=:7689
ports:
- 7476:7474
- 7689:7687
networks:
- magicworld
neo4j-notifications:
image: neo4j:3.5.17
hostname: neo4j-notifications
environment:
- NEO4J_AUTH=neo4j/notifications
- NEO4J_dbms_connector_bolt_advertised__address=:7690
ports:
- 7477:7474
- 7690:7687
networks:
- magicworld
networks:
magicworld: