-
Notifications
You must be signed in to change notification settings - Fork 14
/
docker-compose-virt.yml
200 lines (197 loc) · 6.13 KB
/
docker-compose-virt.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
x-labels:
&default-labels
org.supernetworks.ci: ${CI:-false}
org.supernetworks.version: ${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
x-logging:
&default-logging
driver: journald
# For MacOS:
# options:
# max-size: '12m'
# max-file: '5'
# driver: json-file
services:
base:
container_name: superbase
image: ghcr.io/spr-networks/super_base:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: base
labels: *default-labels
restart: always
privileged: true
ports:
- "51280:51280/udp"
- "127.0.0.1:5353:53"
- "127.0.0.1:8000:80"
- "127.0.0.1:4443:443"
logging: *default-logging
volumes:
- ${PWD}/configs/base/:/configs/base/
- ${PWD}/state/base/:/state/base/
superd:
container_name: superd
image: ghcr.io/spr-networks/super_superd:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: superd
labels: *default-labels
restart: always
privileged: true
logging: *default-logging
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ${PWD}/configs/base/:/configs/base/
- ${PWD}/state/api/:/state/api/
- ${PWD}/:/super/
dhcp:
container_name: superdhcp
image: ghcr.io/spr-networks/super_dhcp:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: dhcp
labels: *default-labels
restart: always
network_mode: service:base
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
dns:
container_name: superdns
image: ghcr.io/spr-networks/super_dns:${RELEASE_VERSION:-latest}${RELEASE_CHANNEL:-}
build:
context: dns
labels: *default-labels
restart: always
network_mode: service:base
logging: *default-logging
depends_on:
- "base"
volumes:
- ${PWD}/configs/dns/:/configs/dns/
- ${PWD}/state/api/:/state/api/
- ${PWD}/state/dns/:/state/dns/
- ${PWD}/state/public/:/state/public/:ro
- ${PWD}/state/plugins/mesh/:/state/plugins/mesh/:ro
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
restart: always
network_mode: service:base
depends_on:
- "base"
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
restart: always
network_mode: service:base
cap_add:
- net_admin
- sys_module
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/dhcp/:/state/dhcp/
- ${PWD}/state/plugins/mesh/:/state/plugins/mesh/:ro
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
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
network_mode: service:base
cap_add:
- net_admin
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/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:-}
restart: always
build:
context: plugin-lookup
labels: *default-labels
network_mode: service:base
logging: *default-logging
depends_on:
- "base"
- "dns"
volumes:
- ${PWD}/state/plugins/plugin-lookup/:/state/plugins/plugin-lookup/
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:-}
restart: always
network_mode: service:base
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/