Skip to content

pixielark/powerpanel-business-docker

 
 

Repository files navigation

This is a Docker image for CyberPower PowerPanel Business served over HTTP or HTTPS. This can be put behind a reverse proxy such as CloudFlare or Traefik, or run standalone.

Usage

Quickstart

If you want to jump right in, take a look at the provided docker-compose.yml.

The default username and password is admin and admin.

USB Devices

If you're using the local version, the Docker image will need to be able to access USB device of the UPS. There's two ways to accomplish this. First, you can give the container access to the specific USB device. Find the USB ID with lsusb:

nathan@zeus:[~]$ lsusb
Bus 002 Device 002: ID 8087:8001 Intel Corp.
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 8087:8009 Intel Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 002: ID 0bda:2832 Realtek Semiconductor Corp. RTL2832U DVB-T
Bus 003 Device 006: ID 0764:0601 Cyber Power System, Inc. PR1500LCDRT2U UPS
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
nathan@zeus:[~]$

Then pass in the specific USB device:

devices:
  - /dev/bus/usb/003/006:/dev/bus/usb/003/006

However, the ID of the USB device is liable to change given a host reboot. Thus, if security isn't as important, you can run the container in privileged mode:

privileged: true

This will automatically detect the correct USB device with no configuration.

Volumes

The image mounts:

  • /usr/local/ppbe/db_local/

Example docker-compose:

volumes:
  - app_data:/usr/local/ppbe/db_local/

...

volumes:
  app_data:
    driver: local

Network

The image exposes port 3052 (HTTP) and 53568 (HTTPS).

Example docker-compose:

ports:
  - 80:3052
  - 443:53568

Tags

There are two versions available: local and remote. See the User Manual for the difference between them.

Specific Versions

Example:

image: docker.io/pixielark/powerpanel-business:local-470

Latest

Example:

image: docker.io/pixielark/powerpanel-business:remote-latest

Registry

This image is available from 2 different registries. Choose whichever you want:

About

Docker image for CyberPower PowerPanel Business

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 60.4%
  • Python 39.6%