-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose-debug.yml
More file actions
195 lines (184 loc) · 4.03 KB
/
Copy pathdocker-compose-debug.yml
File metadata and controls
195 lines (184 loc) · 4.03 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
version: '3'
# Debug version of ContinuITy
services:
eureka:
image: continuityproject/eureka
hostname: eureka
networks:
- continuity-network
ports:
- '8761:8761'
rabbitmq:
image: rabbitmq:3.6.8-management
hostname: rabbitmq
networks:
- continuity-network
ports:
- '5672:5672'
- '15672:15672'
orchestrator:
image: continuityproject/orchestrator
hostname: orchestrator
networks:
- continuity-network
ports:
- '8080:80'
- '5000:5000'
depends_on:
- rabbitmq
- eureka
entrypoint:
- java
- -Xdebug
- -Xnoagent
- -Djava.compiler=NONE
- -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5000
- -jar
- /app.jar
- --port=80
- --spring.rabbitmq.host=rabbitmq
- --eureka.uri=http://eureka:8761/eureka
idpa:
image: continuityproject/idpa
hostname: idpa
networks:
- continuity-network
ports:
- '8081:80'
- '5001:5000'
depends_on:
- rabbitmq
- eureka
entrypoint:
- java
- -Xdebug
- -Xnoagent
- -Djava.compiler=NONE
- -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5000
- -jar
- /app.jar
- --port=80
- --spring.rabbitmq.host=rabbitmq
- --eureka.uri=http://eureka:8761/eureka
- --storage.path=/storage
wessbas:
image: continuityproject/wessbas
hostname: wessbas
networks:
- continuity-network
ports:
- '8082:80'
- '5002:5000'
depends_on:
- rabbitmq
- eureka
entrypoint:
- java
- -Xdebug
- -Xnoagent
- -Djava.compiler=NONE
- -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5000
- -jar
- /app.jar
- --port=80
- --spring.rabbitmq.host=rabbitmq
- --eureka.uri=http://eureka:8761/eureka
request-rates:
image: continuityproject/request-rates
hostname: request-rates
networks:
- continuity-network
ports:
- '8086:80'
- '5006:5000'
depends_on:
- rabbitmq
- eureka
entrypoint:
- java
- -Xdebug
- -Xnoagent
- -Djava.compiler=NONE
- -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5000
- -jar
- /bin/app.jar
- --port=80
- --spring.rabbitmq.host=rabbitmq
- --eureka.uri=http://eureka:8761/eureka
jmeter:
image: continuityproject/jmeter
hostname: jmeter
networks:
- continuity-network
ports:
- '8083:80'
- '5003:5000'
depends_on:
- rabbitmq
- eureka
entrypoint:
- java
- -Xdebug
- -Xnoagent
- -Djava.compiler=NONE
- -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5000
- -jar
- /bin/app.jar
- --port=80
- --spring.rabbitmq.host=rabbitmq
- --eureka.uri=http://eureka:8761/eureka
cobra:
image: continuityproject/cobra
hostname: cobra
networks:
- continuity-network
ports:
- '8084:80'
- '5004:5000'
depends_on:
- rabbitmq
- eureka
entrypoint:
- java
- -Xdebug
- -Xnoagent
- -Djava.compiler=NONE
- -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5000
- -jar
- /app.jar
- --port=80
- --spring.rabbitmq.host=rabbitmq
- --eureka.uri=http://eureka:8761/eureka
cobra-db:
image: elasticsearch:7.3.2
hostname: cobra-db
networks:
- continuity-network
ports:
- '9200:9200'
- '9300:9300'
environment:
- discovery.type=single-node
clustinator:
image: continuityproject/clustinator
hostname: clustinator
networks:
- continuity-network
ports:
- '8088:80'
depends_on:
- rabbitmq
forecastic:
image: continuityproject/forecastic
hostname: forecastic
networks:
- continuity-network
ports:
- '8087:80'
environment:
- ELASTIC=cobra-db
depends_on:
- eureka
networks:
continuity-network:
driver: bridge