发布应用 CloudSaver
Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
parent
58f09f2d9f
commit
ba003ae978
|
|
@ -22,7 +22,8 @@ services:
|
|||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
healthcheck:
|
||||
test: [ "CMD", "sh", "-c", "curl -s -o /dev/null -w '%{http_code}' http://localhost:8008/health | grep -Eq '^(200|204|301|302|304)$'" ]
|
||||
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))"
|
||||
interval: 30s
|
||||
timeout: 3s
|
||||
start_period: 5s
|
||||
|
|
|
|||
Loading…
Reference in New Issue