Signal Strength App

Want to write your own code to work with a HDHomeRun or work with the HDHomeRun DVR? We are happy to help with concepts, APIs, best practices.
tonywagner
Posts: 180
Joined: Wed Sep 19, 2018 8:25 am

Re: Signal Strength App

Post by tonywagner »

petelombardo wrote: Tue Oct 28, 2025 12:05 pm Run it in docker somewhere on your network (like a Raspberry Pi) and then you can tune from anywhere.

https://github.com/Petelombardo/hdhomer ... /README.md
Thanks for sharing, this is fantastic! It should probably get its own stickied forum thread.

Do you plan to provide a Docker image, like through Docker Hub? If not, I would be willing.

petelombardo
Posts: 8
Joined: Tue Jul 30, 2024 7:41 am
x 14

Re: Signal Strength App

Post by petelombardo »

tonywagner wrote: Tue Nov 18, 2025 4:04 pm
petelombardo wrote: Tue Oct 28, 2025 12:05 pm Run it in docker somewhere on your network (like a Raspberry Pi) and then you can tune from anywhere.

https://github.com/Petelombardo/hdhomer ... /README.md
Thanks for sharing, this is fantastic! It should probably get its own stickied forum thread.

Do you plan to provide a Docker image, like through Docker Hub? If not, I would be willing.
Glad you find it useful!

I had not planned on releasing pre-built containers on dockerhub, took a quick stab at it though and I think it should be working.

Update: I published arm64 and amd64 images to Docker hub. You can access them here: https://hub.docker.com/r/petelombardo/h ... signal-web

docker-compose.yml

Code: Select all

services:
  hdhomerun-signal:
    image: petelombardo/hdhomerun-signal-web
    network_mode: host
    restart: unless-stopped
    environment:
      - NODE_ENV=production
      - PORT=3000
    volumes:
      - /etc/localtime:/etc/localtime:ro
Create the docker-compose.yml, then run it with docker-compose up -d.

Post Reply