-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
127 lines (111 loc) · 2.5 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
version: '2'
volumes:
jenkins_home:
reserve:
logging:
login:
order:
payment:
promotion:
deliver:
sonar:
angularfiles:
kitchen:
services:
jenkins:
image: thomasfontys/jenkins
ports:
- "8081:8080"
- "50000:50000"
volumes:
- reserve:/dockervolumes/reserve
- logging:/dockervolumes/logging
- login:/dockervolumes/login
- order:/dockervolumes/order
- payment:/dockervolumes/payment
- promotion:/dockervolumes/promotion
- deliver:/dockervolumes/deliver
- kitchen:/dockervolumes/kitchen
- jenkins_home:/var/jenkins_home
- angularfiles:/dockervolumes/angularfiles
logging:
driver: "json-file"
options:
max-size: "50m"
sonarqube:
image: thomasfontys/sonarqube
ports:
- "9000:9000"
volumes:
- sonar:/opt/sonarqube/data
reserve:
image: thomasfontys/nld-wildfly
ports:
- "8080:8080"
- "9990:9990"
volumes:
- reserve:/opt/jboss/wildfly/standalone/deployments
logging:
image: thomasfontys/nld-wildfly
ports:
- "8082:8080"
- "9991:9990"
volumes:
- logging:/opt/jboss/wildfly/standalone/deployments
login:
image: thomasfontys/nld-wildfly
ports:
- "8083:8080"
- "9992:9990"
volumes:
- login:/opt/jboss/wildfly/standalone/deployments
order:
image: thomasfontys/nld-wildfly
ports:
- "8084:8080"
- "9993:9990"
volumes:
- order:/opt/jboss/wildfly/standalone/deployments
payment:
image: thomasfontys/nld-wildfly
ports:
- "8085:8080"
- "9994:9990"
volumes:
- payment:/opt/jboss/wildfly/standalone/deployments
promotion:
image: thomasfontys/nld-wildfly
ports:
- "8086:8080"
- "9995:9990"
volumes:
- promotion:/opt/jboss/wildfly/standalone/deployments
kitchen:
image: thomasfontys/nld-wildfly
ports:
- "8087:8080"
- "9996:9990"
volumes:
- kitchen:/opt/jboss/wildfly/standalone/deployments
deliver:
image: thomasfontys/nld-wildfly
ports:
- "8088:8080"
- "9997:9990"
volumes:
- deliver:/opt/jboss/wildfly/standalone/deployments
frontend:
image: thomasfontys/nginx
ports:
- "80:80"
volumes:
- angularfiles:/usr/share/nginx/html/
rabbitmq:
image: thomasfontys/rabbitmq
ports:
- "15672:15672"
- "5672:5672"
simulation:
image: thomasfontys/simulationpython
ports:
- "22:22"