-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
111 lines (110 loc) · 2.09 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
version: '3'
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'
depends_on:
- rabbitmq
- eureka
idpa:
image: continuityproject/idpa
hostname: idpa
networks:
- continuity-network
ports:
- '8081:80'
depends_on:
- rabbitmq
- eureka
wessbas:
image: continuityproject/wessbas
hostname: wessbas
networks:
- continuity-network
ports:
- '8082:80'
depends_on:
- rabbitmq
- eureka
request-rates:
image: continuityproject/request-rates
hostname: request-rates
networks:
- continuity-network
ports:
- '8086:80'
depends_on:
- rabbitmq
- eureka
jmeter:
image: continuityproject/jmeter
hostname: jmeter
networks:
- continuity-network
ports:
- '8083:80'
depends_on:
- rabbitmq
- eureka
cobra:
image: continuityproject/cobra
hostname: cobra
networks:
- continuity-network
ports:
- '8084:80'
depends_on:
- rabbitmq
- 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