Monitor your home internet speeds with the Ookla Speedtest CLI.
0

Configure Feed

Select the types of activity you want to include in your feed.

Remove /tmp fallback from speedtest-cli.json copy

Since we now use /home/speedtest consistently, remove the fallback
to /tmp that was added for backward compatibility.

Joseph Hale (Feb 17, 2026, 2:43 PM -0700) cf638e34 9127ce90

+1 -1
+1 -1
entrypoint.sh
··· 4 4 # Setup home directory for current user 5 5 export HOME=${HOME:-/tmp} 6 6 mkdir -p "$HOME/.config/ookla" 7 - cp "$HOME/speedtest-cli.json" "$HOME/.config/ookla/" 2>/dev/null || cp /tmp/speedtest-cli.json "$HOME/.config/ookla/" 7 + cp "$HOME/speedtest-cli.json" "$HOME/.config/ookla/" 8 8 9 9 # Setup cron job 10 10 CRON_SCHEDULE="${CRON_SCHEDULE:-*/30 * * * *}"