Skip to content

Commit

Permalink
ADDED: speedtest-tracker (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
I-Need-C8H10N4O2 committed Mar 10, 2024
1 parent 0836496 commit f9b3484
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 0 deletions.
58 changes: 58 additions & 0 deletions servapps/speedtest-tracker/cosmos-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"cosmos-installer": {
"form": [
{
"name": "adminOnly",
"label": "Do you want to make this service admin only?",
"initialValue": false,
"type": "checkbox"
}
]
},
"minVersion": "0.8.0",
"services": {
"{ServiceName}": {
"image": "lscr.io/linuxserver/speedtest-tracker:latest",
"container_name": "{ServiceName}",
"restart": "unless-stopped",
"UID": 1000,
"GID": 1000,
"environment": [
"PUID=1000",
"PGID=1000",
"TZ=auto",
"DB_CONNECTION=sqlite"
],
"labels": {
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/speedtest-tracker/icon.png",
"cosmos-force-network-secured": "true",
"cosmos-auto-update": "true"
},
"volumes": [
{
"source": "{ServiceName}-config",
"target": "/config",
"type": "volume"
}
],
"routes": [
{
"name": "{ServiceName}",
"description": "Expose {ServiceName} to the web",
"useHost": true,
"target": "http://{ServiceName}:80",
"mode": "SERVAPP",
"Timeout": 14400000,
"ThrottlePerMinute": 12000,
"BlockCommonBots": true,
"SmartShield": {
"Enabled": true
}
{if Context.adminOnly}
,"AuthAdmin": true
{/if}
}
]
}
}
}
9 changes: 9 additions & 0 deletions servapps/speedtest-tracker/description.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "Speedtest Tracker",
"longDescription": "<p>Speedtest Tracker is a self-hosted internet performance tracking application that runs speedtest checks against Ookla's Speedtest service. It allows you to monitor your network's speed and performance over time, building a history of your internet's performance so that you can be informed when you're not receiving your ISP's advertised rates.<br>The default credentials are:<br>Email: [email protected]<br>Password: password</p>",
"description": "Speedtest Tracker is a self-hosted internet performance tracking application that runs speedtest checks against Ookla's Speedtest service.",
"tags": ["speedtest", "network", "monitoring"],
"repository": "https://github.com/alexjustesen/speedtest-tracker",
"image": "https://hub.docker.com/r/linuxserver/speedtest-tracker",
"supported_architectures": ["amd64", "arm64"]
}
Binary file added servapps/speedtest-tracker/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/speedtest-tracker/screenshots/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f9b3484

Please sign in to comment.