diff --git a/README.md b/README.md
index e0dd8af..aa04fe9 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/apps/other/openspeedtest.md b/apps/other/openspeedtest.md
new file mode 100644
index 0000000..8b1e7fb
--- /dev/null
+++ b/apps/other/openspeedtest.md
@@ -0,0 +1,22 @@
+# OpenSpeedTest
+Pure HTML5 Network Performance Estimation Tool.
+Measure the speed between your server and your computer.
+
+
+
+- [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"
+```