mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-05-14 03:10:28 +00:00
openspeedtest
This commit is contained in:
parent
161f7e9b01
commit
4790c60de3
@ -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
|
||||
|
22
apps/other/openspeedtest.md
Normal file
22
apps/other/openspeedtest.md
Normal 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"
|
||||
```
|
Loading…
Reference in New Issue
Block a user