2022-04-11 19:35:15 +02:00
2020-01-11 10:42:36 -05:00
2022-04-11 19:01:44 +02:00
2020-01-11 10:42:36 -05:00
2022-04-11 19:01:44 +02:00
2020-01-11 10:42:36 -05:00
2022-04-11 19:35:15 +02:00
2022-04-11 19:01:44 +02:00
2020-01-11 10:42:36 -05:00

IDRAC Fan Controller Docker Image

To use,

docker run -e IDRAC_HOST=<host ip> -e IDRAC_USER=<username> -e IDRAC_PW=<password> -e FANSPEED=<hex fan speed> alombardo4/idrac-fan-control:latest

FANSPEED should be set as a hex value, e.g. 0x05

docker-compose.yml examples:

  1. to use with local iDRAC:
version: '3'

services:
  Dell_iDRAC_fan_controller:
    image: alombardo4/idrac-fan-control
    restart: unless-stopped
    environment:
      - IDRAC_HOST=local # can be omitted as it is the default value
      - FANSPEED=0x05 # set to the hex value you want to set the fans to (from 0 to 100%)
    devices:
      - /dev/ipmi0:/dev/ipmi0
  1. to use with LAN iDRAC:
version: '3'

services:
  Dell_iDRAC_fan_controller:
    image: alombardo4/idrac-fan-control
    restart: unless-stopped
    environment:
      - IDRAC_HOST=192.168.1.100 # override to the IP of your IDRAC
      - IDRAC_USER=root # set to your IPMI username
      - IDRAC_PW=calvin # set to your IPMI password
      - FANSPEED=0x05 # set to the hex value you want to set the fans to (from 0 to 100%)
Description
Docker image to control your Dell PowerEdge fans via IPMI
Readme Multiple Licenses 311 KiB
Languages
Shell 94%
Dockerfile 6%