-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
240 lines (185 loc) · 6.05 KB
/
Copy pathdocker-compose.yml
File metadata and controls
240 lines (185 loc) · 6.05 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
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
services:
# ---------------------------------------------------------
# Initialize persistent directory permissions
# ---------------------------------------------------------
init-data:
image: alpine:latest
container_name: submonitor-init-data
restart: "no"
volumes:
- ./data:/opt/SubMonitor/data
- ./rules:/opt/SubMonitor/rules
- ./html:/opt/SubMonitor/html
- ./nginx:/opt/SubMonitor/nginx
command:
- sh
- -c
- |
set -eu
DATA_DIR="/opt/SubMonitor/data"
RULES_DIR="/opt/SubMonitor/rules"
HTML_DIR="/opt/SubMonitor/html"
NGINX_DIR="/opt/SubMonitor/nginx"
CACHE_FILE="$$RULES_DIR/ip_cache.json"
echo "[Init] Preparing persistent directory permissions..."
# PHP-FPM、importer、geo-worker all run as UID/GID 82.
# These directories are intentionally writable by UID/GID 82.
for dir in "$$DATA_DIR" "$$RULES_DIR" "$$HTML_DIR" "$$NGINX_DIR"; do
mkdir -p "$$dir"
chown -R 82:82 "$$dir"
find "$$dir" -type d -exec chmod 775 {} \;
find "$$dir" -type f -exec chmod 664 {} \;
done
# SQLite database and WAL/SHM files must remain writable by PHP.
find "$$DATA_DIR" -type f \
\( -name "*.db" -o -name "*.db-wal" -o -name "*.db-shm" \) \
-exec chown 82:82 {} \; \
-exec chmod 664 {} \;
# Geo cache is also written by the PHP worker.
mkdir -p "$$RULES_DIR"
touch "$$CACHE_FILE"
chown 82:82 "$$CACHE_FILE"
chmod 664 "$$CACHE_FILE"
chown 82:82 "$$RULES_DIR"
chmod 775 "$$RULES_DIR"
# The ACME working directory contains account/private material and is
# intentionally prepared as root-only. Nginx creates and owns it.
mkdir -p "$$RULES_DIR/acme"
chown root:root "$$RULES_DIR/acme"
chmod 700 "$$RULES_DIR/acme"
# Certificate directory is writable by the Nginx/root process and
# readable by the PHP container through its read-only mount.
mkdir -p /opt/SubMonitor/ssl
chmod 755 /opt/SubMonitor/ssl
echo "[Init] Permissions initialized: PHP runtime UID/GID 82:82"
# ---------------------------------------------------------
# Import existing IP geo cache into SQLite
# ---------------------------------------------------------
ip-cache-sync:
image: submonitor-php:latest
container_name: submonitor-ip-cache-sync
user: "82:82"
restart: "no"
depends_on:
init-data:
condition: service_completed_successfully
command:
- php
- /opt/SubMonitor/bin/import_ip_cache.php
volumes:
- ./bin:/opt/SubMonitor/bin:ro
- ./html:/opt/SubMonitor/html:ro
- ./rules:/opt/SubMonitor/rules
- ./data:/opt/SubMonitor/data
networks:
- submonitor-net
# ---------------------------------------------------------
# PHP-FPM
# ---------------------------------------------------------
php:
build:
context: .
dockerfile: Dockerfile
image: submonitor-php:latest
container_name: submonitor-php
user: "82:82"
restart: always
depends_on:
ip-cache-sync:
condition: service_completed_successfully
volumes:
# PHP needs to update the admin password.
- ./html:/opt/SubMonitor/html
# PHP needs to update the Nginx upstream configuration.
- ./nginx:/etc/nginx/conf.d
# PHP workers update blacklist/domain state files.
- ./rules:/opt/SubMonitor/rules
# PHP only needs to read certificates; Nginx/ACME owns writes.
- ./ssl:/etc/nginx/ssl:ro
# SQLite database.
- ./data:/opt/SubMonitor/data
networks:
- submonitor-net
# ---------------------------------------------------------
# Log importer
# ---------------------------------------------------------
log-importer:
image: submonitor-php:latest
container_name: submonitor-log-importer
user: "82:82"
restart: always
depends_on:
ip-cache-sync:
condition: service_completed_successfully
command:
- php
- /opt/SubMonitor/bin/log_importer.php
volumes:
- ./bin:/opt/SubMonitor/bin:ro
- ./html:/opt/SubMonitor/html:ro
- ./rules:/opt/SubMonitor/rules
- ./data:/opt/SubMonitor/data
networks:
- submonitor-net
# ---------------------------------------------------------
# Geo worker
# ---------------------------------------------------------
geo-worker:
image: submonitor-php:latest
container_name: submonitor-geo-worker
user: "82:82"
restart: always
depends_on:
ip-cache-sync:
condition: service_completed_successfully
command:
- php
- /opt/SubMonitor/bin/geo_worker.php
volumes:
- ./bin:/opt/SubMonitor/bin:ro
- ./html:/opt/SubMonitor/html:ro
- ./rules:/opt/SubMonitor/rules
- ./data:/opt/SubMonitor/data
networks:
- submonitor-net
# ---------------------------------------------------------
# Nginx
# ---------------------------------------------------------
nginx:
build:
context: .
dockerfile: nginx/Dockerfile
image: submonitor-nginx:latest
container_name: submonitor-nginx
restart: always
ports:
- "80:80"
- "443:443"
volumes:
# ACME HTTP-01 needs to write challenge files into the webroot.
- ./html:/opt/SubMonitor/html
# PHP and Nginx share the same configuration files.
- ./nginx:/etc/nginx/conf.d
# Nginx writes access/error logs and runtime rule state here.
- ./rules:/opt/SubMonitor/rules
# Only Nginx/ACME writes certificates and private keys.
- ./ssl:/etc/nginx/ssl
- ./entrypoint.sh:/entrypoint.sh:ro
- log-data:/var/log/nginx
depends_on:
- php
networks:
- submonitor-net
entrypoint:
- /bin/sh
- /entrypoint.sh
volumes:
log-data:
networks:
submonitor-net:
driver: bridge
enable_ipv6: true
ipam:
config:
- subnet: 172.30.0.0/16
- subnet: 2001:db8:1::/64