Skip to content

Commit 04226a4

Browse files
committed
Add missing APP_URL to readme
1 parent b64e77e commit 04226a4

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ services:
7878
- PGID=1000
7979
- TZ=Etc/UTC
8080
- APP_KEY=
81+
- APP_URL=
8182
- DB_CONNECTION=sqlite
8283
- SPEEDTEST_SCHEDULE=
8384
- SPEEDTEST_SERVERS=
@@ -104,6 +105,7 @@ docker run -d \
104105
-e PGID=1000 \
105106
-e TZ=Etc/UTC \
106107
-e APP_KEY= \
108+
-e APP_URL= \
107109
-e DB_CONNECTION=sqlite \
108110
-e SPEEDTEST_SCHEDULE= \
109111
-e SPEEDTEST_SERVERS= \
@@ -131,6 +133,7 @@ Containers are configured using parameters passed at runtime (such as those abov
131133
| `-e PGID=1000` | for GroupID - see below for explanation |
132134
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
133135
| `-e APP_KEY=` | App key used for encrypting stored data. You can generate a key at [https://speedtest-tracker.dev](https://speedtest-tracker.dev) |
136+
| `-e APP_URL=` | The IP:port or URL your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com` |
134137
| `-e DB_CONNECTION=sqlite` | Set the database type to use. `sqlite`, `pgsql`, or `mysql` |
135138
| `-e SPEEDTEST_SCHEDULE=` | Set the test schedule in cron format. e.g. `0 */6 * * *` |
136139
| `-e SPEEDTEST_SERVERS=` | A comma-separated list of server IDs to test against. Run `docker run -it --rm --entrypoint /bin/bash lscr.io/linuxserver/speedtest-tracker:latest list-servers` to get a list of nearby servers. |

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ param_container_name: "{{ project_name }}"
1717
param_usage_include_env: true
1818
param_env_vars:
1919
- { env_var: "APP_KEY", env_value: "", desc: "App key used for encrypting stored data. You can generate a key at [https://speedtest-tracker.dev](https://speedtest-tracker.dev)" }
20+
- { env_var: "APP_URL", env_value: "", desc: "The IP:port or URL your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com`"}
2021
- { env_var: "DB_CONNECTION", env_value: "sqlite", desc: "Set the database type to use. `sqlite`, `pgsql`, or `mysql`" }
2122
- { env_var: "SPEEDTEST_SCHEDULE", env_value: "", desc: "Set the test schedule in cron format. e.g. `0 */6 * * *`" }
2223
- { env_var: "SPEEDTEST_SERVERS", env_value: "", desc: "A comma-separated list of server IDs to test against. Run `docker run -it --rm --entrypoint /bin/bash lscr.io/linuxserver/speedtest-tracker:latest list-servers` to get a list of nearby servers." }

0 commit comments

Comments
 (0)