1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-04-03 07:16:39 +08:00

发布应用 CloudSaver

Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
Meng Sen 2025-08-06 17:33:51 +08:00
parent ba003ae978
commit d6e917c123

View File

@ -23,7 +23,7 @@ services:
- TZ=Asia/Shanghai
healthcheck:
test: >
CMD-SHELL node -e "require('http').get('http://localhost:8008/health', res => (res.statusCode >= 200 && res.statusCode < 400) ? process.exit(0) : process.exit(1)).on('error', () => process.exit(1))"
node -e "require('http').get('http://localhost:8008/health', res => { const allowed = [200, 204, 301, 302, 304]; process.exit(allowed.includes(res.statusCode) ? 0 : 1); }).on('error', () => process.exit(1));"
interval: 30s
timeout: 3s
start_period: 5s