Skip to content

Latest commit

 

History

History
197 lines (146 loc) · 8 KB

README.md

File metadata and controls

197 lines (146 loc) · 8 KB

Contributors Forks Stargazers Issues MIT License LinkedIn


Logo

Dockerised Eaton IPM

Install and run Eaton® Intelligent Power® Manager onto a Debian docker container!
Explore the official Eaton IPM documentation »

Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Getting Started
  3. Usage
  4. Contributing
  5. License
  6. Acknowledgments

About The Project

Product Name Screen Shot

"Eaton® Intelligent Power Manager® (IPM) is a power environmental device supervision tool for IT environments. The Eaton IPM delivers a global view across the network from any PC with an Internet browser."

Eaton® IPM is distributed on their download page either as a Windows server installer or as a Debian VM. Setting up Docker is way more straightforward than setting up a VM environment and is much more lightweight. If you wish to install it on Docker instead of setting up their VM, this project is done for you!

This repository contains a Dockerfile which installs and runs Eaton® IPM on the latest Debian container, using their official "Virtual appliance" OVA file.

(back to top)

Built With

  • Docker

(back to top)

Getting Started

Prerequisites

 curl -fsSL https://get.docker.com -o get-docker.sh
 sh get-docker.sh

Build the Docker image

docker build https://github.com/Mavyre/eaton-ipm-docker.git

OR

git clone https://github.com/Mavyre/eaton-ipm-docker.git
cd eaton-ipm-docker
docker build -t eaton-ipm .

(back to top)

Usage

docker run -d -p 4679:4679 -p 4680:4680 -v  ~/ipm/db:/usr/local/Eaton/IntelligentPowerManager/db -v ~/ipm/configs:/usr/local/Eaton/IntelligentPowerManager/configs Mavyre/eaton-ipm

IPM uses multiple ports, which are described in their official documentation, page 4. Mapping ports 4679 and 4680 (TCP/UDP) might be enough for initial setup, but you might want to add more ports depending on your usage of IPM, if you're using NUT on some appliances for instance, or SNMP, MQTT... You can map every port marked as "IN" in the documentation.

The two folders db and configs are mapped on host to retain IPM configurations and database.

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

The docker is distributed under the MIT License. See LICENSE.txt for more information.

Eaton® Intelligent Power® Manager is distributed under its own EULA that you must read and accept prior using it.

(back to top)

Acknowledgments

(back to top)