mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
feat(service): Add librespeed
This commit is contained in:
parent
d2de0307bd
commit
0bc41f0f83
1 changed files with 23 additions and 0 deletions
23
templates/compose/librespeed.yaml
Normal file
23
templates/compose/librespeed.yaml
Normal file
|
|
@ -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
|
||||
Loading…
Reference in a new issue