-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose.yml
282 lines (280 loc) · 9.63 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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
x-labels:
&default-labels
org.supernetworks.ci: ${CI:-false}
org.supernetworks.version: ${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
x-logging:
&default-logging
driver: journald
services:
base:
container_name: superbase
image: ghcr.io/spr-networks/super_base:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: base
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_base:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_base:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
privileged: true
logging: *default-logging
volumes:
- ${PWD}/configs/base/:/configs/base/
- ${PWD}/state/base/:/state/base/
- ${PWD}/state/plugins/:/state/plugins/
- ${PWD}/plugins/:/plugins/
superd:
container_name: superd
image: ghcr.io/spr-networks/super_superd:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: superd
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_superd:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_superd:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
privileged: true
logging: *default-logging
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ${PWD}/state/api/:/state/api/
- ${PWD}/configs/base/:/configs/base/
- ${PWD}/:/super/
dhcp:
container_name: superdhcp
image: ghcr.io/spr-networks/super_dhcp:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: dhcp
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_dhcp:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_dhcp:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
privileged: true
depends_on:
- "base"
logging: *default-logging
volumes:
- ${PWD}/configs/base/:/configs/base/:ro
- ${PWD}/configs/dhcp/:/configs/dhcp/
- ${PWD}/state/dhcp/:/state/dhcp/
- ${PWD}/state/plugins/mesh/:/state/plugins/mesh/:ro
- /sys/fs/bpf:/sys/fs/bpf
dhcp_client:
container_name: superdhcp_client
image: ghcr.io/spr-networks/super_dhcp_client:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: dhcp
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_dhcp_client:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_dhcp_client:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
privileged: true
depends_on:
- "base"
logging: *default-logging
entrypoint: /scripts/client.sh
volumes:
- ${PWD}/configs/base/:/configs/base/:ro
- ${PWD}/state/dhcp-client/:/state/dhcp-client/
dns:
container_name: superdns
image: ghcr.io/spr-networks/super_dns:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: dns
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_dns:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_dns:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
privileged: true
logging: *default-logging
depends_on:
- "base"
volumes:
- ${PWD}/configs/dns/:/configs/dns/
- ${PWD}/state/api/:/state/api/
- ${PWD}/state/dns/:/state/dns/
- ${PWD}/state/plugins/mesh/:/state/plugins/mesh/:ro
- ${PWD}/state/public/:/state/public/:ro
wifid:
container_name: superwifid
image: ghcr.io/spr-networks/super_wifid:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: wifid
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_wifid:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_wifid:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
privileged: true
logging: *default-logging
depends_on:
- "api"
- "dhcp"
- "multicast_udp_proxy"
volumes:
- ${PWD}/configs/base/:/configs/base/:ro
- ${PWD}/configs/wifi/:/configs/wifi/
- ${PWD}/state/wifi/:/state/wifi/
multicast_udp_proxy:
container_name: super_multicast_udp_proxy
image: ghcr.io/spr-networks/super_multicast_udp_proxy:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: multicast_udp_proxy
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_multicast_udp_proxy:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_multicast_udp_proxy:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
privileged: true
depends_on:
- "base"
- "api"
logging: *default-logging
volumes:
- ${PWD}/configs/base/:/configs/base/:ro
- ${PWD}/state/public/:/state/public/:ro
- ${PWD}/state/plugins/mesh/:/state/plugins/mesh/:ro
wireguard:
container_name: superwireguard
image: ghcr.io/spr-networks/super_wireguard:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: wireguard
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_wireguard:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_wireguard:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
privileged: true
depends_on:
- "base"
- "dhcp"
- "api"
logging: *default-logging
volumes:
- ${PWD}/configs/base/:/configs/base/:ro
- ${PWD}/configs/wireguard/:/configs/wireguard/
- ${PWD}/state/plugins/wireguard/:/state/plugins/wireguard/
- ${PWD}/state/plugins/mesh/:/state/plugins/mesh/:ro
- ${PWD}/state/dhcp/:/state/dhcp/
frontend:
container_name: superfrontend
image: ghcr.io/spr-networks/super_frontend:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
entrypoint: ["cp", "-RT", "/app/build/", "/frontend/build"]
build:
context: frontend
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_frontend:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_frontend:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: none
volumes:
- ${PWD}/frontend/:/frontend
api:
container_name: superapi
image: ghcr.io/spr-networks/super_api:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: api
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_api:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_api:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
privileged: true
restart: always
depends_on:
- "base"
- "frontend"
- "superd"
logging: *default-logging
volumes:
- ${PWD}/configs/auth/:/configs/auth/
- ${PWD}/configs/base/:/configs/base/
- ${PWD}/configs/devices/:/configs/devices/
- ${PWD}/configs/dns:/configs/dns/
- ${PWD}/configs/plugins/:/configs/plugins/
- ${PWD}/configs/ppp:/configs/ppp/
- ${PWD}/configs/wifi/:/configs/wifi/
- ${PWD}/configs/wifi_uplink/:/configs/wifi_uplink/
- ${PWD}/configs/wireguard/:/configs/wireguard/
- ${PWD}/configs/scripts/:/configs/scripts/
- ${PWD}/configs/pfw/:/configs/pfw/
- ${PWD}/state/wifi/:/state/wifi/
- ${PWD}/state/dhcp/:/state/dhcp/
- ${PWD}/state/dns/:/state/dns/
- ${PWD}/state/api/:/state/api/
- ${PWD}/state/backups/:/state/backups/
- ${PWD}/state/base/:/state/base/
- ${PWD}/state/dhcp-client/:/state/dhcp-client/
- ${PWD}/state/plugins/:/state/plugins/
- ${PWD}/state/public/:/state/public/
- ${PWD}/frontend/build:/ui/
- /var/log/journal:/var/log/journal:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
plugin-lookup:
container_name: superplugin-lookup
image: ghcr.io/spr-networks/super_plugin-lookup:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: plugin-lookup
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_plugin-lookup:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_plugin-lookup:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
logging: *default-logging
depends_on:
- "base"
- "dns"
volumes:
- ${PWD}/state/plugins/plugin-lookup/:/state/plugins/plugin-lookup/
packet_logs:
container_name: superpacket_logs
image: ghcr.io/spr-networks/super_packet_logs:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: packet_logs
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_packet_logs:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_packet_logs:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
privileged: true
restart: always
logging: *default-logging
volumes:
- ${PWD}/state/api/:/state/api/
- ${PWD}/state/plugins/packet_logs/:/state/plugins/packet_logs
- ${PWD}/configs/base/:/configs/base/:ro
- /dev/log:/dev/log
db:
container_name: superdb
image: ghcr.io/spr-networks/super_db:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: db
labels: *default-labels
x-bake:
tags:
- ghcr.io/spr-networks/super_db:latest${RELEASE_CHANNEL:-}
- ghcr.io/spr-networks/super_db:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
network_mode: host
depends_on:
- "api"
logging: *default-logging
volumes:
- ${PWD}/configs/base/:/configs/base/:ro
- ${PWD}/configs/db/:/configs/db/
- ${PWD}/state/api/:/state/api/
- ${PWD}/state/plugins/db/:/state/plugins/db/