Wakupator
Self-HostedSelf-hosted Wake-on-LAN scheduler and device manager
Overview
Wakupator is a lightweight self-hosted tool for managing Wake-on-LAN (WoL) tasks. It lets you schedule one-time or recurring wakes for devices on your network, maintain a searchable inventory of devices with MAC addresses and custom labels, and trigger WoL commands instantly via a simple web interface. Deployment is hassle-free using Docker—pull the image, map a volume for data persistence, and expose the web port to start using it. Ideal for home labs or small offices to automate device power management without relying on third-party services.
Self-Hosting Resources
Below is a reference structure for docker-compose.yml.
⚠️ Do NOT run blindly. Replace placeholders with official values.
version: '3'
services:
wakupator:
image: <OFFICIAL_IMAGE_NAME>:latest
container_name: wakupator
ports:
- "8080:<APP_INTERNAL_PORT>"
volumes:
- ./data:/app/data
restart: unless-stopped Key Features
- Schedule recurring/one-time Wake-on-LAN tasks
- Manage device inventory with MAC addresses and custom labels
- Docker-based deployment for quick setup
Frequently Asked Questions
? Is Wakupator hard to install?
No—Wakupator uses Docker for deployment, so you can get it running in minutes. Pull the official image, run it with a volume for data persistence, and expose the web port (default 8080). No manual dependency setup is required.
? Can Wakupator wake devices on a different subnet?
Yes—if your network router supports Wake-on-LAN forwarding (UDP port 9), you can configure Wakupator to send WoL packets to devices on other subnets. Ensure your router is set up to route these packets correctly.
? Is Wakupator completely free to use?
Yes—Wakupator is open-source software released under the MIT License. You can use, modify, and self-host it without any cost or subscription fees.
Top Alternatives
People Also Ask about Wakupator
Tool Info
Pros
- ⊕ Privacy-focused (no external service dependencies)
- ⊕ Lightweight and resource-efficient
- ⊕ Intuitive web UI for easy task management
Cons
- ⊖ No support for remote power-off commands
- ⊖ Requires network access to target devices (same subnet or routed WoL setup)
- ⊖ No mobile app (web-only interface)