openspeedtest

This commit is contained in:
Tomasz Borychowski 2022-07-15 22:23:14 +01:00
parent 161f7e9b01
commit 4790c60de3
2 changed files with 26 additions and 0 deletions

View File

@ -233,6 +233,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
- [PhpServerMonitor](apps/monitors/php-server-monitor.md)
- [Statping](apps/monitors/statping.md)
### Other, not-fully tested
- [Staytus](https://github.com/adamcooke/staytus) 🔗 - service status is updated manually!
- [cstate](https://cstate.mnts.lt/) 🔗 - weird...
@ -240,12 +241,14 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
- [Netdata](https://hub.docker.com/r/netdata/netdata) 🔗 - lots of stuff, nothing relevant
- [LibreNMS](https://github.com/librenms/docker) 🔗 - ugly
### Hosted
- [statuspage.io](https://www.atlassian.com/software/statuspage) 🔗 - same - manual process!
- [updown](https://updown.io) 🔗 - doesn't seem to have a page with multiple services' statuses...
- [healthchecks](https://healthchecks.io) 🔗 - cron-based monitoring, no public status page, just badges
- [uptimerobot](https://uptimerobot.com) 🔗 - free is very basic, constantly nags for upgrade to paid...
### Useful links
- [awesome-sysadmin: monitoring](https://github.com/n1trux/awesome-sysadmin#monitoring)
- [reddit thread](https://www.reddit.com/r/selfhosted/comments/epzt3f/im_looking_for_a_lean_monitoring_and_altert/)
@ -280,6 +283,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
- [Firefox sync server](apps/other/firefox-sync.md)
- [LanguageTool server](apps/other/language-tool.md)
- [VPN client](apps/other/vpn.md)
- [OpenSpeedTest](apps/other/openspeedtest.md)
# Photos

View File

@ -0,0 +1,22 @@
# OpenSpeedTest
Pure HTML5 Network Performance Estimation Tool.<br>
Measure the speed between your server and your computer.
<br>
- [Homepage](http://openspeedtest.com)
- [Github repo](https://github.com/openspeedtest/Speed-Test)
--name openspeedtest -d -p 3000:3000 -p 3001:3001
## docker-compose.yml
```yml
---
services:
openspeedtest:
image: openspeedtest/latest
container_name: openspeedtest
restart: unless-stopped
ports:
- "3000:3000"
```