Skip to content

Librespeed

Description⚓︎

LibreSpeed is a Free and Open Source speedtest that you can host on your server(s), and users can run in their browser.

Note

Follow this link to change the Front-end UI

Docker⚓︎

Basic info⚓︎

Basic info with official links

docker-compose.yml⚓︎

YAML
---
version: "3.1"
services:
  librespeed:
    image: linuxserver/librespeed:latest
    container_name: librespeed
    networks:
      - proxy
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - TZ=${TZ}
      - DOCKER_MODS=ghcr.io/gilbn/theme.park:librespeed
      - TP_THEME=dark
      # - PASSWORD=PASSWORD
      # - CUSTOM_RESULTS=false #optional
      # - DB_TYPE=sqlite #optional
      # - DB_NAME=DB_NAME #optional
      # - DB_HOSTNAME=DB_HOSTNAME #optional
      # - DB_USERNAME=DB_USERNAME #optional
      # - DB_PASSWORD=DB_PASSWORD #optional
      # - DB_PORT=DB_PORT #optional
    volumes:
      - "${CFG_DIR}/librespeed:/config"
    ports:
      - 3006:80
    labels:
      traefik.enable: true
    restart: unless-stopped

networks:
  proxy:    # rename this to your custom docker network.
    external: true

deploy.sh⚓︎

Bash
mkdir -p "${BAK_CFG_DIR}"/librespeed
docker compose up -d