powerbeacon
Wake-On-LAN Orchestration Platform
1.8K
A Centralized Wake-on-LAN (WoL) Orchestration Platform
GitHub Repository | Report an Issue | Documentation
PowerBeacon is a modern, distributed Wake-on-LAN orchestration platform. It is designed to help you easily manage, wake, and monitor devices across multiple isolated networks from a single, centralized control plane.
Traditional Wake-on-LAN is limited to the local broadcast domain (Layer 2). PowerBeacon solves this by using a central server (Control Plane) and lightweight remote agents (Execution Plane) deployed on your target networks to dispatch the "magic packets" exactly where they need to go.
The easiest way to get the PowerBeacon control plane (Backend + Frontend) up and running is using Docker Compose.
Create a docker-compose.yml file:
services:
db:
image: postgres:16-alpine
container_name: powerbeacon-db
environment:
POSTGRES_USER: powerbeacon
POSTGRES_PASSWORD: ${DB_PASSWORD:-changeMe}
POSTGRES_DB: powerbeacon
volumes:
- powerbeacon_data:/var/lib/postgresql/data
networks:
- powerbeacon_network
healthcheck:
test: ["CMD-SHELL", "pg_isready -U powerbeacon"]
interval: 10s
timeout: 5s
retries: 5
powerbeacon:
image: kotsiossp97/powerbeacon:latest
container_name: powerbeacon
environment:
DB_URL: postgresql://powerbeacon:${DB_PASSWORD:-changeMe}@db:5432/powerbeacon
JWT_SECRET: ${JWT_SECRET:-your-secret-key-change-in-production}
ports:
- "8000:80"
depends_on:
db:
condition: service_healthy
networks:
- powerbeacon_network
volumes:
powerbeacon_data:
networks:
powerbeacon_network:
driver: bridge
Then run:
docker-compose up -d
docker run -d \
--name powerbeacon \
-p 8000:80 \
-e DB_URL=postgresql://powerbeacon:changeMe@db:5432/powerbeacon \
-e JWT_SECRET=your-secret-key-change-in-production \
kotsiossp97/powerbeacon:latest
To actually wake devices, you will need to deploy the PowerBeacon Agent on the same local network as the target devices. The agent connects back to this central Docker container to receive wake instructions.
You can find more information and deployment instructions in the Documentation and in the web UI once the control plane is up.
PowerBeacon is an open-source project! We welcome contributions, bug reports, and feature requests. If you encounter any issues or want to help improve the project, please head over to our GitHub Issues page.
Content type
Image
Digest
sha256:e185642aa…
Size
126.2 MB
Last updated
9 days ago
docker pull kotsiossp97/powerbeacon