From 0bc41f0f8322253d90c105de0d443e218dd505c3 Mon Sep 17 00:00:00 2001 From: deepshekhardas Date: Wed, 11 Mar 2026 10:21:40 +0530 Subject: [PATCH] feat(service): Add librespeed --- templates/compose/librespeed.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 templates/compose/librespeed.yaml diff --git a/templates/compose/librespeed.yaml b/templates/compose/librespeed.yaml new file mode 100644 index 000000000..f9f592486 --- /dev/null +++ b/templates/compose/librespeed.yaml @@ -0,0 +1,23 @@ +# documentation: https://github.com/librespeed/speedtest +# slogan: Self-hosted lightweight Speed Test. +# category: devtools +# tags: speedtest, internet-speed +# logo: svgs/librespeed.png +# port: 80 + +services: + librespeed: + image: adolfintel/speedtest:latest + container_name: librespeed + restart: always + environment: + - PUID=1000 + - PGID=1000 + - TZ=UTC + - PASSWORD=password + network_mode: bridge + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost"] + interval: 30s + timeout: 10s + retries: 3