From 37f33d7a063ebfd892979ba7786f226162a96448 Mon Sep 17 00:00:00 2001 From: mag37 Date: Mon, 11 Aug 2025 21:36:51 +0200 Subject: [PATCH] Snooze bugfix, added auth support to ntfy.sh and sendmail support to SMTP --- README.md | 6 +++++- dockcheck.sh | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5719489..4499857 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,11 @@ ___ ## :bell: Changelog -- **v0.6.9**: # +- **v0.7.0**: + - Bugfix: snooze dockcheck.sh-self-notification and some config clarification. + - Added authentication support to Ntfy.sh. + - Added suport for sendmail in the SMTP-template. +- **v0.6.9**: - Bugfix: label logic didn't skip recreation (skipped pulling). - Added comma separated search filtering so you can selectively search exactly which containers to check/update. - eg: `dockcheck.sh -yp homer,dozzle` diff --git a/dockcheck.sh b/dockcheck.sh index c4a8587..9de58f5 100755 --- a/dockcheck.sh +++ b/dockcheck.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -VERSION="v0.6.9" -# ChangeNotes: bugfix label logic and added comma separated search filtering +VERSION="v0.7.0" +# ChangeNotes: Snooze bugfix, added auth support to ntfy.sh and sendmail support to SMTP Github="https://github.com/mag37/dockcheck" RawUrl="https://raw.githubusercontent.com/mag37/dockcheck/main/dockcheck.sh" @@ -601,7 +601,7 @@ if [[ -n "${GotUpdates:-}" ]]; then fi done if [[ "$AutoPrune" == false ]] && [[ "$AutoMode" == false ]]; then printf "\n"; read -rep "Would you like to prune dangling images? y/[n]: " AutoPrune; fi - if [[ "$AutoPrune" == true ]] || [[ "$AutoPrune" =~ [yY] ]]; then printf "\n Auto pruning.."; docker image prune -f; fi + if [[ "$AutoPrune" == true ]] || [[ "$AutoPrune" =~ [yY] ]]; then printf "\nAuto pruning.."; docker image prune -f; fi printf "\n%bAll done!%b\n" "$c_green" "$c_reset" else printf "\nNo updates installed, exiting.\n"