Skip to content

Commit ce3df62

Browse files
alexjustesengitbook-bot
authored andcommitted
GITBOOK-75: change request with no subject merged in GitBook
1 parent 2f9e6f5 commit ce3df62

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

SUMMARY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* [Authentication](security/authentication.md)
2525
* [Authorization](security/authorization.md)
2626

27-
## ⚙ Settings
27+
## Settings
2828

2929
* [Data Integrations](settings/data-platforms/README.md)
3030
* [InfluxDB2](settings/data-platforms/influxdb2.md)
@@ -42,7 +42,7 @@
4242
* [Health Check](other/health-check.md)
4343
* [Stream Deck](other/stream-deck.md)
4444

45-
## 🖥 API
45+
## 🖥 API
4646

4747
* [Getting Started](api/getting-started.md)
4848
* [Latest Result](api/latest-result.md)

getting-started/installation/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Setting up your environment with Docker Compose is the recommended infrastructur
1313
{% tabs %}
1414
{% tab title="Docker (MariaDB/MySQL)" %}
1515
```yaml
16-
version: '3.3'
16+
version: '3.4'
1717
services:
1818
speedtest-tracker:
1919
container_name: speedtest-tracker
@@ -53,7 +53,7 @@ volumes:
5353
5454
{% tab title="Docker (PostgreSQL)" %}
5555
```yaml
56-
version: '3.3'
56+
version: '3.4'
5757
services:
5858
speedtest-tracker:
5959
container_name: speedtest-tracker

other/health-check.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@ Using the health check URL you can test to make sure the application is up and w
55
### Health Check Endpoint
66

77
```bash
8-
curl {APP_URL}/api/healthcheck
8+
curl APP_URL/api/healthcheck
99
```
1010

1111
You can also add this to your Docker Compose file so the Docker service can monitor that the container has started successfully.
1212

13-
```docker
13+
```yaml
14+
version: '3.4'
15+
1416
healthcheck:
15-
test: curl -fSs {APP_URL}/api/healthcheck || exit 1
17+
test: curl -fSs APP_URL/api/healthcheck || exit 1
1618
interval: 10s
1719
retries: 3
1820
start_period: 30s

0 commit comments

Comments
 (0)