diff --git a/README.md b/README.md index c1e846a..b60e491 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/librespeed/README.md b/librespeed/README.md new file mode 100644 index 0000000..7f62351 --- /dev/null +++ b/librespeed/README.md @@ -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 diff --git a/librespeed/docker-compose.yml b/librespeed/docker-compose.yml new file mode 100644 index 0000000..ac9ac3b --- /dev/null +++ b/librespeed/docker-compose.yml @@ -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