-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
168 lines (158 loc) · 5.04 KB
/
docker-compose.yml
File metadata and controls
168 lines (158 loc) · 5.04 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
networks:
owms:
services:
####################################################
## RabbitMQ Message Broker (UI at Port 15673)
####################################################
rabbitmq:
image: openwms/rabbitmq:latest
container_name: rabbitmq
hostname: 'mosque'
ports:
- "15672:15672"
- "5672:5672"
environment:
- RABBITMQ_DEFAULT_USER=guest
- RABBITMQ_DEFAULT_PASS=guest
volumes:
- ./out/rabbitmq:/var/lib/rabbitmq
- ./out/rabbitmq-mnesia:/var/lib/rabbitmq/mnesia
- /etc/localtime:/etc/localtime:ro
networks:
- owms
####################################################
## OpenWMS CORE: Jaeger Monitoring (UI at Port 4317)
####################################################
jaeger:
image: jaegertracing/all-in-one:latest
container_name: jaeger
ports:
- "4317:4317"
- "16686:16686"
environment:
- COLLECTOR_OTLP_ENABLED=true
volumes:
- /etc/localtime:/etc/localtime:ro
networks:
- owms
####################################################
## OpenWMS Eureka Service Registry (UI at Port 8761)
####################################################
srv:
image: "interface21/openwms-services:2.2.0"
container_name: srv
ports:
- "8762:8761"
networks:
- owms
####################################################
## OpenWMS Central Configuration Server
####################################################
cfg:
image: "interface21/openwms-configuration:2.2.0"
container_name: cfg
environment:
spring.profiles.active: "native"
spring.cloud.config.server.native.search-locations: file:///openwms/conf
spring.rabbitmq.host: rabbitmq
owms.eureka.url: http://user:sa@srv:8761
owms.srv.hostname: cfg
volumes:
- ./:/openwms
- /etc/localtime:/etc/localtime:ro
networks:
- owms
####################################################
## OpenWMS CORE: Preferences Service
####################################################
core-preferences:
image: "openwms/org.openwms.core.preferences:latest"
container_name: core-preferences
restart: always
environment:
spring.profiles.active: "ASYNCHRONOUS,DISTRIBUTED,BUTAN"
spring.rabbitmq.host: rabbitmq
owms.eureka.url: http://user:sa@srv:8761
owms.srv.hostname: core-preferences
owms.tracing.url: http://jaeger:4317
volumes:
- ./:/openwms
- /etc/localtime:/etc/localtime:ro
networks:
- owms
####################################################
## OpenWMS TCP/IP Driver for palette conveyor
####################################################
tcp-palettconv:
image: "openwms/org.openwms.common.comm:1.6.0"
container_name: tcp-palettconv
restart: always
ports:
- "30001:30001"
- "30002:30002"
environment:
spring.application.name: tcpip-palettconv
spring.profiles.active: "ASYNCHRONOUS,DISTRIBUTED,ZILE"
spring.zipkin.base-url: http://tracing:9411/
spring.rabbitmq.host: rabbitmq
owms.eureka.url: http://user:sa@srv:8761
owms.srv.hostname: tcpip-palettconv
volumes:
- ./:/openwms
- /etc/localtime:/etc/localtime:ro
networks:
- owms
####################################################
## OpenWMS COMMON Services
####################################################
common-service:
image: "openwms/org.openwms.common.service:3.0.0"
container_name: common-service
restart: always
environment:
spring.profiles.active: "ASYNCHRONOUS,DISTRIBUTED,ZILE"
spring.rabbitmq.host: rabbitmq
owms.eureka.url: http://user:sa@srv:8761
owms.srv.hostname: common-service
owms.tracing.url: http://jaeger:4317
volumes:
- ./:/openwms
- /etc/localtime:/etc/localtime:ro
networks:
- owms
####################################################
## OpenWMS Transportation Service
####################################################
tms-service:
image: "openwms/org.openwms.tms.transportation:latest"
container_name: tms-service
restart: always
environment:
spring.profiles.active: "ASYNCHRONOUS,DISTRIBUTED,ZILE"
spring.rabbitmq.host: rabbitmq
owms.eureka.url: http://user:sa@srv:8761
owms.srv.hostname: tms-service
owms.tracing.url: http://jaeger:4317
volumes:
- ./:/openwms
- /etc/localtime:/etc/localtime:ro
networks:
- owms
####################################################
## OpenWMS Routing Services
####################################################
routing-service:
image: "openwms/org.openwms.tms.routing:latest"
container_name: routing-service
restart: always
environment:
spring.profiles.active: "ASYNCHRONOUS,DISTRIBUTED,CAMUNDA,ZILE"
spring.rabbitmq.host: rabbitmq
owms.eureka.url: http://user:sa@srv:8761
owms.srv.hostname: routing-service
owms.tracing.url: http://jaeger:4317
volumes:
- ./:/openwms
- /etc/localtime:/etc/localtime:ro
networks:
- owms