mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-01-23 12:14:17 +00:00
22 lines
423 B
Markdown
22 lines
423 B
Markdown
# 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)
|
|
|
|
|
|
## docker-compose.yml
|
|
```yml
|
|
---
|
|
services:
|
|
openspeedtest:
|
|
image: openspeedtest/latest
|
|
container_name: openspeedtest
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
```
|