From c9a649518616f3cf4e8c39d772dfbc2eff330a03 Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Sat, 5 Nov 2022 22:44:25 +0100 Subject: [PATCH] What's up docker custom service (#444) Add WUD --- docs/customservices.md | 16 ++++++ src/components/services/WUD.vue | 92 +++++++++++++++++++++++++++++++++ 2 files changed, 108 insertions(+) create mode 100644 src/components/services/WUD.vue diff --git a/docs/customservices.md b/docs/customservices.md index b81094e..a2d5f02 100644 --- a/docs/customservices.md +++ b/docs/customservices.md @@ -28,6 +28,8 @@ within Homer: - [rTorrent](#rtorrent) - [qBittorrent](#qbittorrent) - [CopyToClipboard](#copy-to-clipboard) + - [Speedtest Tracker](#SpeedtestTracker) + - [What's Up Docker](#whats-up-docker) If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. @@ -344,3 +346,17 @@ Configuration example: ## SpeedtestTracker For the SpeedtestTracker service you just need to define a entry with type `SpeedtestTracker`. + +## What's up Docker + +What's up Docker allow to display info about the number of container running and the number for which an update is available on your Homer dashboard. + +The following configuration is available for the WUD service. + +```yaml +- name: "What's Up Docker" + logo: "assets/tools/sample.png" + subtitle: "Docker image update notifier" + url: "http://192.168.1.12:3001" + type: "WUD" +``` \ No newline at end of file diff --git a/src/components/services/WUD.vue b/src/components/services/WUD.vue new file mode 100644 index 0000000..917f3bd --- /dev/null +++ b/src/components/services/WUD.vue @@ -0,0 +1,92 @@ + + + + + -- 2.41.0