Wake-on-LAN HTTP server. Send WoL packets via HTTP. Deploy with Docker.
1.7K
This repository provides a simple Wake-on-LAN (WoL) HTTP server that allows you to send WoL magic packets via HTTP requests. It consists of two main scripts:
main.py on POST requests.$ docker run -d -p 8000:8000 --env MAC="xx-xx-xx-xx-xx-xx" --env BROADCAST="xxx.xxx.255.255" cyrof/remotewakeserver:latest
version: '3'
services:
wol-server:
image: cyrof/remotewakeserver:latest
ports:
- "8000:8000"
environment:
MAC: "xx-xx-xx-xx-xx-xx"
BROADCAST: "xxx.xxx.255.255"
main.py and returns "Post is working".For detailed instructions and full documentation, please visit the GitHub repository
Content type
Image
Digest
sha256:bf1fb5a92…
Size
75.8 MB
Last updated
6 months ago
docker pull cyrof/remotewakeserver