Web application that manages computers to wake up via WakeOnLan
10K+
Web application that manages computers to wake up via WakeOnLan
ewake is an application that helps you manage your WOL-enabled computers.
It allows users to start their computers themselves via a web frontend (no SSH access is needed anymore to send the magic packet).
http://localhost:5555/etherwake?user=1thorsten
The administration (creation and deletion) is done via a simple REST API.
PUT http://localhost:5555/manageClients
Content-Type: application/json
{
"name": "1thorsten",
"description": "serv1",
"mac": "E4:54:E8:A4:17:1F",
"ip": "10.40.4.162",
"check": "tcp:3389"
}
###
DELETE http://localhost:5555/manageClients
Content-Type: application/json
{
"mac": "E4:54:E8:A4:17:1F",
"ip": "10.40.4.162"
}
ewake shows which computers are currently running by applying the specified check (e.g. check tcp-port 3389).
http://localhost:5555/activeClients
ewake records the actions to detect problems easier.
http://localhost:5555/check
network should be host to use all features (e.g. dissolving client mac-address)
docker run -d --restart unless-stopped --network host -e EWAKE_PORT=5555 -v ewake-clients:/ewake-clients --name ewake 1thorsten/ewake:latest
docker run -d --restart unless-stopped --network host -e EWAKE_PORT=5555 -e EWAKE_JSON_HTTP=https://raw.githubusercontent.com/1thorsten/ewake/main/src/resources/client.json --name ewake 1thorsten/ewake:latest
docker run -d --restart unless-stopped --network host -e EWAKE_PORT=5555 -e EWAKE_JSON_HTTP=http://http-over-all:8338/mysamba/clients.json -e EWAKE_JSON_HTTP_WRITE=http://http-over-all:8338/dav/mysamba/clients.json --name ewake 1thorsten/ewake:latest
on Windows and mac network=host does not work properly
docker run -d --restart unless-stopped -p 5555:5555 -v ewake-clients:/ewake-clients --name ewake 1thorsten/ewake:latest
docker run -d --restart unless-stopped -p 5555:5555 -e EWAKE_JSON_HTTP=https://raw.githubusercontent.com/1thorsten/ewake/main/src/resources/client.json --name ewake 1thorsten/ewake:latest
docker run -d --restart unless-stopped -p 5555:5555 -e EWAKE_JSON_HTTP=http://http-over-all:8338/mysamba/clients.json -e EWAKE_JSON_HTTP_WRITE=http://http-over-all:8338/dav/mysamba/clients.json --name ewake 1thorsten/ewake:latest
Content type
Image
Digest
sha256:b174f1644…
Size
53.6 MB
Last updated
over 1 year ago
docker pull 1thorsten/ewake