Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions other/health-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ You can also add this to your Docker Compose file so the Docker service can moni
version: '3.4'

healthcheck:
test: curl -fSs APP_URL/api/healthcheck || exit 1
test: curl -fSs APP_URL/api/healthcheck | jq -r .message || exit 1
interval: 10s
retries: 3
start_period: 30s
Expand All @@ -24,5 +24,5 @@ healthcheck:
### Response

```json
{"message":"Speedtest Tracker is running!"}
Speedtest Tracker is running!
```