From 8a3d313a369ce10b720f4538e25bbb805b516e65 Mon Sep 17 00:00:00 2001 From: kevin Date: Sat, 30 Dec 2023 13:53:02 +0800 Subject: [PATCH] add watchyourlan --- README.md | 1 + watchyourlan/README.md | 6 ++++++ watchyourlan/docker-compose.yml | 14 ++++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 watchyourlan/README.md create mode 100644 watchyourlan/docker-compose.yml diff --git a/README.md b/README.md index 684a79f..6caa751 100644 --- a/README.md +++ b/README.md @@ -494,6 +494,7 @@ A collection of delicious docker recipes. - [x] v2ray/official :cn: - [x] mpromonet/v4l2rtspserver :camera: - [x] centurylink/watchtower +- [x] aceberg/watchyourlan - [x] wekanteam/wekan - [x] requarks/wiki - [x] wordpress diff --git a/watchyourlan/README.md b/watchyourlan/README.md new file mode 100644 index 0000000..d1e2e08 --- /dev/null +++ b/watchyourlan/README.md @@ -0,0 +1,6 @@ +WatchYourLAN +============ + +[WatchYourLAN][1] is a lightweight network IP scanner with web GUI. + +[1]: https://github.com/aceberg/WatchYourLAN diff --git a/watchyourlan/docker-compose.yml b/watchyourlan/docker-compose.yml new file mode 100644 index 0000000..e068e84 --- /dev/null +++ b/watchyourlan/docker-compose.yml @@ -0,0 +1,14 @@ +version: "3.8" +services: + watchyourlan: + image: aceberg/watchyourlan + volumes: + - ./data:/data + environment: + - DBPATH=/data/db.sqlite + - GUIIP=0.0.0.0 + - GUIPORT=8840 + - IFACE=wlan0 + - TZ=Asia/Shanghai + network_mode: host + restart: unless-stopped