forked from ContinuITy-Project/ContinuITy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
100 lines (99 loc) · 1.92 KB
/
Copy pathdocker-compose.yml
File metadata and controls
100 lines (99 loc) · 1.92 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
version: '3'
services:
eureka:
image: continuityproject/eureka
hostname: eureka
networks:
- continuity-network
ports:
- '8761:8761'
orchestrator:
image: continuityproject/orchestrator
hostname: orchestrator
networks:
- continuity-network
ports:
- '8080:80'
depends_on:
- rabbitmq
- eureka
rabbitmq:
image: rabbitmq:3.6.8-management
hostname: rabbitmq
networks:
- continuity-network
ports:
- '15672:15672'
idpa-application:
image: continuityproject/idpa-application
hostname: idpa-application
networks:
- continuity-network
ports:
- '8085:80'
depends_on:
- rabbitmq
- eureka
idpa-annotation:
image: continuityproject/idpa-annotation
hostname: idpa-annotation
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
session-logs:
image: continuityproject/session-logs
hostname: session-logs
networks:
- continuity-network
ports:
- '8084:80'
depends_on:
- rabbitmq
- eureka
forecast:
image: continuityproject/forecast
hostname: forecast
networks:
- continuity-network
ports:
- '8087:80'
depends_on:
- rabbitmq
- eureka
networks:
continuity-network:
driver: bridge