mirror of
https://github.com/mag37/dockcheck.git
synced 2026-03-13 20:26:28 +01:00
versionbump
This commit is contained in:
parent
32f3dfbb2c
commit
3eb8bb21db
2 changed files with 15 additions and 5 deletions
14
README.md
14
README.md
|
|
@ -23,6 +23,14 @@ ___
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
- **v0.7.7**:
|
||||||
|
- New:
|
||||||
|
- More URLs to urls.list.
|
||||||
|
- Allowing ranges to be used when selecting containers to update.
|
||||||
|
- Added XMPP notification template.
|
||||||
|
- Fixes:
|
||||||
|
- Changed "restart-stack" behavior to down+up instead of stop+up.
|
||||||
|
- `-s` option now recreates stopped containers and then stops them again.
|
||||||
- **v0.7.6**:
|
- **v0.7.6**:
|
||||||
- New:
|
- New:
|
||||||
- Added Bark notify-template.
|
- Added Bark notify-template.
|
||||||
|
|
@ -76,7 +84,7 @@ Options:
|
||||||
-p Auto-Prune dangling images after update.
|
-p Auto-Prune dangling images after update.
|
||||||
-r Allow checking/updating images created by `docker run`, containers need to be recreated manually.
|
-r Allow checking/updating images created by `docker run`, containers need to be recreated manually.
|
||||||
-R Skip container recreation after pulling images.
|
-R Skip container recreation after pulling images.
|
||||||
-s Include stopped containers in the check. (Logic: docker ps -a).
|
-s Include stopped containers, returns to stopped state after recreation.
|
||||||
-t N Set a timeout (in seconds) per container for registry checkups, 10 is default.
|
-t N Set a timeout (in seconds) per container for registry checkups, 10 is default.
|
||||||
-u Allow automatic self updates - caution as this will pull new code and autorun it.
|
-u Allow automatic self updates - caution as this will pull new code and autorun it.
|
||||||
-v Prints current version.
|
-v Prints current version.
|
||||||
|
|
@ -175,7 +183,8 @@ you wish to enable, but there is no harm in having all of them present.
|
||||||
│ ├── notify_slack.sh
|
│ ├── notify_slack.sh
|
||||||
│ ├── notify_smtp.sh
|
│ ├── notify_smtp.sh
|
||||||
│ ├── notify_telegram.sh
|
│ ├── notify_telegram.sh
|
||||||
│ └── notify_v2.sh
|
│ ├── notify_v2.sh
|
||||||
|
│ └── notify_xmpp.sh
|
||||||
├── dockcheck.config
|
├── dockcheck.config
|
||||||
├── dockcheck.sh
|
├── dockcheck.sh
|
||||||
└── urls.list # optional
|
└── urls.list # optional
|
||||||
|
|
@ -219,6 +228,7 @@ The actual snooze duration will be 60 seconds less than `SNOOZE_SECONDS` to acco
|
||||||
- [Slack](https://api.slack.com/tutorials/tracks/posting-messages-with-curl) - Slack curl api
|
- [Slack](https://api.slack.com/tutorials/tracks/posting-messages-with-curl) - Slack curl api
|
||||||
- SMTP Email with [mSMTP](https://wiki.debian.org/msmtp) (or deprecated alternative [sSMTP](https://wiki.debian.org/sSMTP))
|
- SMTP Email with [mSMTP](https://wiki.debian.org/msmtp) (or deprecated alternative [sSMTP](https://wiki.debian.org/sSMTP))
|
||||||
- [Telegram](https://telegram.org/) - Telegram chat API.
|
- [Telegram](https://telegram.org/) - Telegram chat API.
|
||||||
|
- [XMPP](https://xmpp.org/getting-started/) - XMPP chat notifications.
|
||||||
|
|
||||||
Further additions are welcome - suggestions or PRs!
|
Further additions are welcome - suggestions or PRs!
|
||||||
<sub><sup>Initiated and first contributed by [yoyoma2](https://github.com/yoyoma2).</sup></sub>
|
<sub><sup>Initiated and first contributed by [yoyoma2](https://github.com/yoyoma2).</sup></sub>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
VERSION="v0.7.6"
|
VERSION="v0.7.7"
|
||||||
# ChangeNotes: Bugfixes and sanitation. Cleanup of default.config - migrate settings manually (optional).
|
# ChangeNotes: xmpp template added, ranges for selection possible, restart-stack and -s reworked.
|
||||||
Github="https://github.com/mag37/dockcheck"
|
Github="https://github.com/mag37/dockcheck"
|
||||||
RawUrl="https://raw.githubusercontent.com/mag37/dockcheck/main/dockcheck.sh"
|
RawUrl="https://raw.githubusercontent.com/mag37/dockcheck/main/dockcheck.sh"
|
||||||
|
|
||||||
|
|
@ -51,7 +51,7 @@ Help() {
|
||||||
echo "-p Auto-prune dangling images after update."
|
echo "-p Auto-prune dangling images after update."
|
||||||
echo "-r Allow checking/updating images created by 'docker run', containers need to be recreated manually."
|
echo "-r Allow checking/updating images created by 'docker run', containers need to be recreated manually."
|
||||||
echo "-R Skip container recreation after pulling images."
|
echo "-R Skip container recreation after pulling images."
|
||||||
echo "-s Include stopped containers in the check. (Logic: docker ps -a)."
|
echo "-s Include stopped containers, returns to stopped state after recreation."
|
||||||
echo "-t N Set a timeout (in seconds) per container for registry checkups, 10 is default."
|
echo "-t N Set a timeout (in seconds) per container for registry checkups, 10 is default."
|
||||||
echo "-u Allow automatic self updates - caution as this will pull new code and autorun it."
|
echo "-u Allow automatic self updates - caution as this will pull new code and autorun it."
|
||||||
echo "-v Prints current version."
|
echo "-v Prints current version."
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue