[WIP] A simple wake-on-lan service
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dockerfile

+31
+7
Dockerfile
··· 1 + FROM rust:1.93.1-alpine3.22 2 + 3 + WORKDIR /app 4 + COPY . . 5 + 6 + RUN cargo install --path . 7 + CMD ["wol"]
+24
README.md
··· 1 + # WOL 2 + 3 + A simple wake-on-lan webapp. 4 + 5 + Configuration is read from `wol.toml` from the current directory. 6 + 7 + ```toml 8 + # wol.toml 9 + binding = "0.0.0.0:3000" # default address 10 + 11 + [targets] 12 + # human friendly name = mac address 13 + computer = "01:02:03:04:05:06" 14 + server = "11:12:13:14:15:16" 15 + ``` 16 + 17 + ```yaml 18 + # compose.yaml 19 + services: 20 + wol: 21 + build: https://tangled.org/vielle.dev/wol.git 22 + ports: ["3000:3000"] 23 + volumes: ["./wol.toml:/app/wol.toml"] 24 + ```