Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 890 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 890 Bytes

🌡️ Docker Host Sensor Page

A simple container that polls your Docker host's temperature sensor data to display in a simple web page.

Run the container in your Docker host, and it will poll system temperatures using lm-sensors every minute, and host them on a simple HTML page using Nginx.

Installation

Tested on an Ubuntu 18 host.

docker run \
    -d \
    -p 8080:80 \
    --privileged \
    --name docker-host-sensor-page \
    --restart=always \
    grahamleslie/docker-host-sensor-page:latest

Development

  • Install Docker.
  • Clone this repository.
  • ./start.sh to build, remove any existing development containers, and start a new one.