File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
getting-started/installation Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 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 )
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 )
Original file line number Diff line number Diff 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 '
1717services :
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 '
5757services :
5858 speedtest-tracker :
5959 container_name : speedtest-tracker
Original file line number Diff line number Diff 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
1111You 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+
1416healthcheck :
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
You can’t perform that action at this time.
0 commit comments