-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
169 lines (160 loc) · 4.64 KB
/
docker-compose.yml
File metadata and controls
169 lines (160 loc) · 4.64 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
services:
# tracing-jaeger - Distributed Tracing
tracing-jaeger:
image: jaegertracing/all-in-one:1.52
container_name: tracing-jaeger
network_mode: host
environment:
- COLLECTOR_OTLP_ENABLED=true
# Command Center Service (CycloneDDS)
command-center:
build:
context: .
args:
SERVICE_NAME: command-center
image: dds-data-tracing/command-center
container_name: command-center
network_mode: host
environment:
- CYCLONEDDS_URI=file:///shared/cyclonedds.xml
- TRACED_SERVICE_NAME=command-center
- OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318/v1/traces
depends_on:
- tracing-jaeger
restart: on-failure
# Reconnaissance Unit Service (CycloneDDS)
recon-unit:
build:
context: .
args:
SERVICE_NAME: recon-unit
image: dds-data-tracing/recon-unit
container_name: recon-unit
network_mode: host
environment:
- CYCLONEDDS_URI=file:///shared/cyclonedds.xml
- TRACED_SERVICE_NAME=recon-unit
- OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318/v1/traces
depends_on:
- tracing-jaeger
- command-center
restart: on-failure
# Logistics Depot Service (CycloneDDS)
logistics-depot:
build:
context: .
args:
SERVICE_NAME: logistics-depot
image: dds-data-tracing/logistics-depot
container_name: logistics-depot
network_mode: host
environment:
- CYCLONEDDS_URI=file:///shared/cyclonedds.xml
- TRACED_SERVICE_NAME=logistics-depot
- OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318/v1/traces
depends_on:
- tracing-jaeger
- recon-unit
restart: on-failure
# Tactical Display Service (CycloneDDS)
tactical-display:
build:
context: .
args:
SERVICE_NAME: tactical-display
image: dds-data-tracing/tactical-display
container_name: tactical-display
network_mode: host
environment:
- CYCLONEDDS_URI=file:///shared/cyclonedds.xml
- TRACED_SERVICE_NAME=tactical-display
- OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318/v1/traces
depends_on:
- tracing-jaeger
- logistics-depot
restart: on-failure
# ============ Track Fusion System ============
# Radar Sensor - publishes source tracks
radar-sensor:
build:
context: .
args:
SERVICE_NAME: radar-sensor
image: dds-data-tracing/radar-sensor
container_name: radar-sensor
network_mode: host
environment:
- CYCLONEDDS_URI=file:///shared/cyclonedds.xml
- TRACED_SERVICE_NAME=radar-sensor
- OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318/v1/traces
depends_on:
- tracing-jaeger
restart: on-failure
# ESM Sensor - publishes source tracks
esm-sensor:
build:
context: .
args:
SERVICE_NAME: esm-sensor
image: dds-data-tracing/esm-sensor
container_name: esm-sensor
network_mode: host
environment:
- CYCLONEDDS_URI=file:///shared/cyclonedds.xml
- TRACED_SERVICE_NAME=esm-sensor
- OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318/v1/traces
depends_on:
- tracing-jaeger
restart: on-failure
# Optik Sensor - publishes source tracks
optik-sensor:
build:
context: .
args:
SERVICE_NAME: optik-sensor
image: dds-data-tracing/optik-sensor
container_name: optik-sensor
network_mode: host
environment:
- CYCLONEDDS_URI=file:///shared/cyclonedds.xml
- TRACED_SERVICE_NAME=optik-sensor
- OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318/v1/traces
depends_on:
- tracing-jaeger
restart: on-failure
# Track Fusion - collects source tracks, fuses them, publishes tactical tracks
track-fusion:
build:
context: .
args:
SERVICE_NAME: track-fusion
image: dds-data-tracing/track-fusion
container_name: track-fusion
network_mode: host
environment:
- CYCLONEDDS_URI=file:///shared/cyclonedds.xml
- TRACED_SERVICE_NAME=track-fusion
- OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318/v1/traces
depends_on:
- tracing-jaeger
- radar-sensor
- esm-sensor
- optik-sensor
restart: on-failure
# Track Consumer - receives tactical tracks
track-consumer:
build:
context: .
args:
SERVICE_NAME: track-consumer
image: dds-data-tracing/track-consumer
container_name: track-consumer
network_mode: host
environment:
- CYCLONEDDS_URI=file:///shared/cyclonedds.xml
- TRACED_SERVICE_NAME=track-consumer
- OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318/v1/traces
depends_on:
- tracing-jaeger
- track-fusion
restart: on-failure