history of speedtest

This commit is contained in:
Peter Wood
2024-11-20 13:54:42 +00:00
parent a912445cc9
commit 8b90b6b88b
2 changed files with 23 additions and 1 deletions

4
.gitignore vendored
View File

@@ -3,7 +3,9 @@ nginxproxymanager/*/
ntfy/*/
vaultwarden/*/
standard-notes/
pinchflat/*
pinchflat/
homepage/config/logs/
speedtest/config/
# ignore environment files
.env

View File

@@ -0,0 +1,20 @@
services:
speedtest-tracker:
container_name: speedtest-tracker
image: lscr.io/linuxserver/speedtest-tracker:latest
ports:
- 9080:80
environment:
- PUID=1000
- PGID=1000
- APP_KEY=base64:aP7dM8lY8sv/eZ7FyIvDWL7tUpKCmvTsT2d0+7alO8s= /* key generated from https://speedtest-tracker.dev/ */
- DB_CONNECTION=sqlite
- SPEEDTEST_SCHEDULE=30 */1 * * * /* Every 30 minutes */
- SPEEDTEST_SERVERS=48348,18429,18856,35083,15380,35463,15013,15622,34129,26613
- SPEEDTEST_PING_URL=1.1.1.1
- PRUNE_RESULTS_OLDER_THAN=730 /* remove resulters older than two years */
- APP_TIMEZONE=America/New_York
volumes:
- ./config:/config
restart: unless-stopped
networks: {}