-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
81 lines (73 loc) · 1.54 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
version: '2'
services:
cassandra:
image: cassandra:2
hostname: cassandra
ports:
- "9042:9042"
- "9160:9160"
volumes:
- ./volumes/cassandra_data:/var/lib/cassandra
qpid:
image: ooi-qpid:0.18
hostname: qpid
ports:
- "5672:5672"
- "8080:8080"
postgres:
image: ooi-postgres:9.2
hostname: postgres
ports:
- "5432:5432"
redis:
image: redis
hostname: redis
ports:
- "6379:6379"
uframe:
image: ooi-uframe:0.01
hostname: uframe
depends_on:
- cassandra
- qpid
- postgres
ports:
- "12570-12600:12570-12600"
volumes:
- ./volumes/ooi:/edex/data/ooi
- ./volumes/async:/opt/ooi/async
environment:
- EDEX_RUN_MODE=ooi
- CASSANDRA_CONTACTPOINTS=cassandra
- CASSANDRA_PORT=9042
- CASSANDRA_KEYSPACE=ooi
# uframe-cabled:
# image: ooi-uframe:0.01
# hostname: uframe-cabled
# depends_on:
# - cassandra
# - qpid
# - postgres
# environment:
# - EDEX_RUN_MODE=cabled_ingest
# uframe-uncabled:
# image: ooi-uframe:0.01
# hostname: uframe-uncabled
# depends_on:
# - cassandra
# - qpid
# - postgres
# environment:
# - EDEX_RUN_MODE=uncabled_ingest
stream_engine:
image: ooi-stream-engine:0.01
hostname: stream_engine
depends_on:
- cassandra
volumes:
- ./volumes/async:/opt/ooi/async
ingest_engine:
image: ooi-ingest-engine:0.01
hostname: ingest_engine
volumes:
- ./volumes/ingest_data:/data