1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-10-30 23:47:48 +02:00

add librespeed

This commit is contained in:
kevin
2025-10-27 16:59:23 +08:00
parent d54adb561c
commit cdb0cc6393
3 changed files with 25 additions and 0 deletions

View File

@@ -416,6 +416,7 @@ A collection of delicious docker recipes.
- [x] ipfs/kubo
- [x] heartexlabs/label-studio
- [x] langfuse/langfuse
- [x] ghcr.io/librespeed/speedtest
- [x] libretranslate/libretranslate
- [x] martialblog/limesurvey
- [x] linuxserver

8
librespeed/README.md Normal file
View File

@@ -0,0 +1,8 @@
LibreSpeed
==========
[LibreSpeed][1] is a very lightweight speed test implemented in Javascript, using XMLHttpRequest and Web Workers.
> Remote Servers: https://librespeed.org/backend-servers/servers.php
[1]: https://github.com/librespeed/speedtest

View File

@@ -0,0 +1,16 @@
services:
librespeed:
image: ghcr.io/librespeed/speedtest
ports:
- "8080:8080"
volumes:
- ./data:/database
environment:
- MODE=standalone
- TITLE=LibreSpeed
- TELEMETRY=false
- ENABLE_ID_OBFUSCATION=true
- OBFUSCATION_SALT=0x1234abcd
- PASSWORD=secret
- WEBPORT=8080
restart: unless-stopped