We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cbc0517 + ea1de76 commit 29f95a7Copy full SHA for 29f95a7
other/health-check.md
@@ -14,7 +14,7 @@ You can also add this to your Docker Compose file so the Docker service can moni
14
version: '3.4'
15
16
healthcheck:
17
- test: curl -fSs APP_URL/api/healthcheck || exit 1
+ test: curl -fSs APP_URL/api/healthcheck | jq -r .message || exit 1
18
interval: 10s
19
retries: 3
20
start_period: 30s
@@ -24,5 +24,5 @@ healthcheck:
24
### Response
25
26
```json
27
-{"message":"Speedtest Tracker is running!"}
+Speedtest Tracker is running!
28
```
0 commit comments