tonywagner wrote: Tue Nov 18, 2025 4:04 pm
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.