Speedtest Tracker
Deployment of Speedtest Tracker¶
This section guides you through the setup of Speedtest Tracker using Docker Compose. Speedtest Tracker runs scheduled speed tests and provides a web-based interface to view the results.
Note
Offical Docs - Speedtest Tracker Documentation
Docker Compose Configuration¶
Here's the Docker Compose file necessary for deploying the Speedtest Tracker service. Save this configuration as docker-compose.yml
in your project directory.
version: '3.8'
services:
speedtest-tracker:
container_name: speedtest-tracker
image: lscr.io/linuxserver/speedtest-tracker:latest
ports:
- '8072:80' # Maps port 80 inside the container to port 8072 on the host for HTTP access.
- '8472:443' # Maps port 443 inside the container to port 8472 on the host for HTTPS access.
environment:
- PUID=1000 # Sets the user ID the service will run as.
- PGID=1000 # Sets the group ID the service will run as.
- APP_KEY=base64:s5xs13.... # Application key for Laravel framework security. Generate a App Key here - https://speedtest-tracker.dev
- APP_URL=https://speedtest.yoursite/localIP.com # Public URL where the Speedtest Tracker will be accessible.
- DB_CONNECTION=sqlite # Uses SQLite as the database.
- SPEEDTEST_SCHEDULE="0 */3 * * *" # Cron schedule, runs every 3 hours.
- DISPLAY_TIMEZONE=Pacific/Auckland # Sets the timezone for displaying data in the UI.
volumes:
- ./data:/config # Mounts the directory for persistent data.
- ./ssl-keys:/config/keys # Mounts the directory for SSL keys.
restart: unless-stopped # Ensures the container restarts unless it is explicitly stopped.
Deployment Instructions¶
-
Prepare the Environment: Ensure Docker and Docker Compose are installed on your host machine.
-
Create a Docker Compose File: Create a new file named
docker-compose.yml
and copy the above content into this file. -
Prepare Data and SSL Directories: Create the
data
andssl-keys
directories in the same directory as yourdocker-compose.yml
. This ensures proper permissions and data persistence. -
Start the Container: Navigate to the directory containing your
This command will start the Speedtest Tracker in detached mode, allowing it to run in the background.docker-compose.yml
and run the following command to start Speedtest Tracker: -
Access the Web Interface: Once the container is running, access the Speedtest Tracker web interface by navigating to
http://localhost:8072
orhttps://localhost:8472
depending on your setup.
default login
Username: [email protected]
Password: password
Additional Notes¶
- Make sure the ports in the
docker-compose.yml
do not conflict with other services on your host. - Adjust the
SPEEDTEST_SCHEDULE
environment variable to change the frequency of speed tests as needed.