Open the server Apps tab
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.
Self-hosted internet speed tracking application with historical data and charts
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Speedtest Tracker template in Server Compass to deploy a self-hosted internet speed monitoring dashboard on your VPS, then verify the login page in a browser.
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.
Click New App and choose the template deployment path so Server Compass can load the built-in catalog.
Use the template picker search to find Speedtest Tracker in the Server Compass template catalog.
Choose the Speedtest Tracker template. Server Compass fills the web service, persistent config volume, generated app key, schedule, and public ports.
Confirm the app name, generated secret values, and compose service. In this run, the app was named speedtest-tracker-demo and used host port 8080 for HTTP.
Review the generated compose settings, confirm the Speedtest Tracker HTTP and HTTPS ports are available, and click Deploy.
Keep the deployment modal open while Server Compass uploads the compose file, pulls the Speedtest Tracker image, starts the container, and verifies the stack.
After deployment finishes, return to the Apps tab and confirm the Speedtest Tracker app is marked Running with its application URL available.
Open the application URL in a browser. The Speedtest Tracker login page confirms the monitoring dashboard is reachable.
The Speedtest Tracker login page loaded successfully from the deployed container.
It deploys the Speedtest Tracker container with an SQLite-backed persistent config volume and public HTTP and HTTPS ports.
The tutorial used host port 8080 for HTTP, which maps to Speedtest Tracker container port 80. The template also generates an HTTPS host port mapped to container port 443.
The template notes list the default account as [email protected] with password. Change it immediately after first login.
No. The deployment guide should live on the Speedtest Tracker template detail page and be linked from the reusable template deployment docs page.
Deploy Speedtest Tracker the traditional way with SSH and Docker Compose.
Start by opening a terminal window and connecting to your VPS via SSH.
# Connect to your VPS
ssh root@your-server-ip
# Or with a specific SSH key
ssh -i ~/.ssh/your-key root@your-server-ipFirst time? Docker required! Install it with: curl -fsSL https://get.docker.com | sh
Create a dedicated space for your application deployment.
# Create and navigate to project directory
mkdir -p ~/apps/speedtest-tracker
cd ~/apps/speedtest-trackerCreate a docker-compose.yml file with the following configuration:
services:
speedtest:
image: ghcr.io/alexjustesen/speedtest-tracker:latest
ports:
- "8080:80"
- "8443:443"
environment:
- PUID=1000
- PGID=1000
- APP_KEY=<your-app-key>
- APP_URL=http://localhost:8080
- SPEEDTEST_SCHEDULE=*/30 * * * *
- APP_TIMEZONE=UTC
- DB_CONNECTION=sqlite
volumes:
- speedtest_config:/config
restart: unless-stopped
volumes:
speedtest_config:
PORTHTTP port to expose(default: 8080)HTTPS_PORTHTTPS port to expose(default: 8443)APP_KEYEncryption keyDeploy the stack and monitor the startup process.
# Spin up containers
docker compose up -d
# Verify deployment
docker compose ps
# Check logs for errors
docker compose logs -fSet up firewall rules to permit incoming connections.
# Allow the application port through firewall
sudo ufw allow 8080/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8080Server Compass makes deploying Speedtest Tracker effortless. Visual setup, one-click deploy, done.
After deploying Speedtest Tracker with Server Compass, complete these steps to finish setup
Open the Speedtest Tracker URL in your browser
Log in with default credentials ([email protected] / password)
Change the default password
Configure scheduled speed tests
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Speedtest Tracker
Simply download Server Compass, connect to your VPS, and select Speedtest Tracker from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Speedtest Tracker requires a minimum of 256MB RAM. We recommend a VPS with at least 1024MB RAM for optimal performance. Any modern Linux server with Docker support will work.
Yes! Server Compass provides volume mapping that allows you to import existing data. You can also use standard Speedtest Tracker backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Speedtest Tracker image will be pulled and deployed with zero downtime.
Speedtest Tracker is open-source software. You only pay for your VPS hosting (typically $5-20/month) and optionally Server Compass ($29 one-time). No subscription fees or per-seat pricing.
Download Server Compass and deploy Speedtest Tracker to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass