forked from akka/alpakka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
93 lines (92 loc) · 1.9 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# For detailed information about docker-compose visit https://docs.docker.com/compose/
# To start all docker containers required to execute the tests locally run:
# docker-compose up
version: '2'
services:
amqp:
image: rabbitmq:3
ports:
- "5672:5672"
cassandra:
image: cassandra:3.0.15
ports:
- "9042:9042"
orientdb:
image: orientdb:3.0.4
ports:
- "2424:2424"
environment:
- "ORIENTDB_ROOT_PASSWORD=root"
command: /orientdb/bin/server.sh -Dmemory.chunk.size=268435456
dynamodb:
image: deangiberson/aws-dynamodb-local
ports:
- "8001:8000"
geode:
container_name: geode
image: apachegeode/geode:1.6.0
hostname: geode
mem_limit: 2g
expose:
- "10334"
- "1099"
- "7575"
- "40404"
ports:
- "1099:1099"
- "10334:10334"
- "7575:7575"
- "7070:7070"
- "40404:40404"
- "8081:8080"
volumes:
- ./geode/scripts/:/scripts/
command: /scripts/geode.sh
ironauth:
image: iron/auth
ports:
- "8090:8090"
ironmq:
image: iron/mq
links:
- "ironauth:ironauth"
environment:
- "AUTH_HOST=http://ironauth:8090"
ports:
- "8080:8080"
mongo:
image: mongo
ports:
- "27017:27017"
mqtt:
image: toke/mosquitto
ports:
- "1883:1883"
volumes:
- ./mqtt/src/test/travis:/mqtt/config/conf.d
kudu-master-data:
image: kunickiaj/kudu
volumes:
- /var/lib/kudu/master
kudu-tserver-data:
image: kunickiaj/kudu
volumes:
- /var/lib/kudu/tserver
kudu-master:
image: kunickiaj/kudu
ports:
- 7051:7051
volumes_from:
- kudu-master-data
command: master
kudu-tserver:
image: kunickiaj/kudu
environment:
- KUDU_MASTER=kudu-master
ports:
- 7050:7050
volumes_from:
- kudu-tserver-data
command: tserver
links:
- kudu-master