By default Speedtest Tracker chooses the 'fastest server' by the one that responds the quickest.
That video will be for an older version. The author moved config like that into the Docker Compose file (or Docker Run command if you used that) If you want to hardcode which server is used, you have to do that in your Docker Compose file or Docker Run cmd. The scanning schedule is configured there too. All the environmental options
are here and example Docker Compose files
are here
HB's server ID is 54208
For example, here's my Docker Compose file. Note that this forum will have removed all the indents that make this a valid YAML file:
services:
speedtest-tracker:
container_name: speedtest-tracker
ports:
- 8765:80
- 8443:443
environment:
- PUID=1001
- PGID=1001
- APP_KEY=base64:<your key here>
- DB_CONNECTION=sqlite
- SPEEDTEST_SCHEDULE=8 * * * *
- SPEEDTEST_SERVERS=54208
- PRUNE_RESULTS_OLDER_THAN=120days
- CHART_DATETIME_FORMAT=
- DATETIME_FORMAT=
- DISPLAY_TIMEZONE=Europe/London
volumes:
- ./config:/config
- ./config/keys:/config/keys
image: lscr.io/linuxserver/speedtest-tracker:latest
restart: unless-stopped
Edited by nofappingway (Wed 22-Jan-25 17:00:40)