mirror of
https://github.com/mag37/dockcheck.git
synced 2026-03-05 08:30:35 +01:00
Snooze bugfix, added auth support to ntfy.sh and sendmail support to SMTP
This commit is contained in:
parent
732a5e69cd
commit
37f33d7a06
2 changed files with 8 additions and 4 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue