forked from neo4j-labs/neodash
-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
66 lines (58 loc) · 1.29 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
version: '2.4'
networks:
# Required for the devcontainer
sindit_network:
name: sindit_network
services:
sindit_influx_db:
extends:
file: docker-compose.databases.yml
service: sindit_influx_db
networks:
- sindit_network
ports:
- '8086:8086'
sindit_neo4j_kg:
extends:
file: docker-compose.databases.yml
service: sindit_neo4j_kg
networks:
- sindit_network
ports:
- 7474:7474
- 7687:7687
sindit_minio_s3:
extends:
file: docker-compose.databases.yml
service: sindit_minio_s3
networks:
- sindit_network
ports:
- "9000:9000"
- "9099:9099"
zookeeper:
image: 'zookeeper:3.7'
networks:
- sindit_network
ports:
- '2181:2181'
kafka:
image: 'confluentinc/cp-kafka:latest'
depends_on:
- zookeeper
networks:
- sindit_network
ports:
- '9092:9092'
environment:
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
volumes:
sindit-minio-s3-volume:
sindit-neo4j-conf-volume:
sindit-neo4j-logs-volume:
sindit-neo4j-data-volume:
sindit-influx-db-data-volume:
sindit-influx-db-config-volume:
sindit-kafka-data-volume: