Speedtest Tracker
Run a Speedtest every hour and graph the results. See https://hub.docker.com/r/henrywhitaker3/speedtest-tracker/tags for arch options
Pulls:
18.8M
Stars:
164
User:
henrywhitaker3
Created:
Apr 09, 2020
Updated:
1 years ago
Status:
active
Type
Container
Platform
linux
Image
henrywhitaker3/speedtest-tracker:dev-arm
Ports
8765:80/tcp
/config : /portainer/Files/AppData/Config/speedtest-tracker
unless-stopped
Env Vars
OOKLA_EULA_GDPR=true
Installation
Via Portainer
- Ensure both Docker and Portainer are installed, and up-to-date
- Log into your Portainer web UI
- Under Settings → App Templates, paste the below URL
- Head to Home → App Templates, and the list of apps will show up
- Select the app you wish to deploy, fill in any config options, and hit Deploy
Template Import URL
https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me
Via Docker Run
docker run -d \
-p 8765:80/tcp \
-e OOKLA_EULA_GDPR=${OOKLA_EULA_GDPR} \
-v /portainer/Files/AppData/Config/speedtest-tracker:/config \
--restart=unless-stopped \
henrywhitaker3/speedtest-tracker:dev-arm
Via Docker Compose
Save this file as docker-compose.yml
and run docker-compose up -d
Use this only as a guide.
version: '3.8'
services:
speedtest-tracker:
image: henrywhitaker3/speedtest-tracker:dev-arm
ports:
- 8765:80:tcp
environment:
OOKLA_EULA_GDPR: ''
volumes:
- /portainer/Files/AppData/Config/speedtest-tracker:/config
Alternative Methods
For more installation options, see the Documentation in the GitHub repo