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.

Use full-length docker options and clean up docker-compose

Documentation changes:
- Change docker run short options to full-length equivalents
- detach, publish, volume, env flags now use full names
- Update version tag format in docs

Docker Compose:
- Remove deprecated version declaration
- Remove redundant HOME environment variable

Joseph Hale (Feb 17, 2026, 3:38 PM -0700) 86aa1095 e95e60f0

+7 -9
+7 -6
README.md
··· 41 41 ### Using Docker Run 42 42 43 43 ```bash 44 - docker run -d \ 44 + docker run \ 45 + --detach \ 45 46 --name speedtest \ 46 - -p 8080:8080 \ 47 - -v $(pwd)/data:/data \ 48 - -e CRON_SCHEDULE="0 */5 * * *" \ 49 - -e HOME=/tmp \ 47 + --publish 8080:8080 \ 48 + --volume $(pwd)/data:/data \ 49 + --env CRON_SCHEDULE="0 */5 * * *" \ 50 + --env HOME=/tmp \ 50 51 --restart unless-stopped \ 51 52 thehale/speedtest:latest 52 53 ``` ··· 83 84 84 85 Available tags: 85 86 - `latest` - Most recent stable release 86 - - `v1.0.0`, `v1.1.0`, etc. - Specific version tags 87 + - `1.0.0`, `1.1.0`, etc. - Specific version tags 87 88 88 89 ## Building from Source 89 90
-3
docker-compose.yml
··· 1 - version: '3.8' 2 - 3 1 services: 4 2 speedtest: 5 3 build: . ··· 10 8 - ./data:/data 11 9 environment: 12 10 - CRON_SCHEDULE=${CRON_SCHEDULE:-0 */5 * * *} 13 - - HOME=/tmp 14 11 restart: unless-stopped