Skip to content

Installing Speedtest Mod

ipitio edited this page Apr 27, 2024 · 37 revisions

Please use our Mod Script to install the latest version of the Mod. For information about running Pi-hole in Docker, including a Compose example, please refer to the official repo and docs.

Docker Note You'll need to run the bash script from within every new container if you're not using Compose.

Via the Shell

You can just pipe to bash!

curl -sSLN https://github.com/arevindh/pi-hole/raw/master/advanced/Scripts/speedtestmod/mod.sh | sudo bash

With Docker

Simply change the image you're using to our modded one and proceed as usual.

ghcr.io/arevindh/pihole-speedtest:latest

You can also run the Mod Script inside every new container yourself. For example, if you're using Compose, by replacing the image line with:

build:
    dockerfile_inline: |
        FROM pihole/pihole:latest
        RUN curl -sSLN https://github.com/arevindh/pi-hole/raw/master/advanced/Scripts/speedtestmod/mod.sh | sudo bash

and rebuilding without cache:

docker compose down; docker compose build --no-cache; docker compose up -d

Instructions

Clone this wiki locally