Merge pull request #10 from mag37/testing

Testing
This commit is contained in:
mag37
2023-02-04 12:39:50 +01:00
committed by GitHub

View File

@ -1,5 +1,10 @@
#!/bin/bash
### VERSION v.0.1.1
VERSION="v0.1.3"
Github="https://github.com/mag37/dockcheck"
### Check if there's a new release of the script:
LatestRelease="$(curl -s -r 0-30 https://raw.githubusercontent.com/mag37/dockcheck/main/dockcheck.sh | sed -n "/VERSION/s/VERSION=//p" | tr -d '"')"
[ "$VERSION" != "$LatestRelease" ] && printf "New version available! Latest: "$LatestRelease" - Local: "$VERSION" \nGrab it here: "$Github" \n\n"
### Help Function:
Help() {
@ -21,7 +26,7 @@ while getopts "aynh" options; do
done
shift "$((OPTIND-1))"
### Set $1 to a variable for later
### Set $1 to a variable for name filtering later.
SearchName="$1"
### Check if required binary exists in PATH or directory:
@ -70,15 +75,14 @@ done
choosecontainers() {
while [[ "$ChoiceClean" =~ [A-Za-z] || -z "$ChoiceClean" ]]; do
printf "What containers do you like to update? \n"
# options
read -p 'Enter number(s) separated by comma (eg. 1,3,4): ' Choice
if [ "$Choice" == "0" ] ; then
SelectedUpdates=( ${NumberedUpdates[@]:1} )
ChoiceClean=$(echo $Choice|sed 's/[,.:;]/ /g')
SelectedUpdates=( "${NumberedUpdates[@]:1}" )
ChoiceClean=$(echo "$Choice" |sed 's/[,.:;]/ /g')
else
ChoiceClean=$(echo $Choice|sed 's/[,.:;]/ /g')
for s in $ChoiceClean; do
SelectedUpdates+=( ${NumberedUpdates[$s]} )
ChoiceClean=$(echo "$Choice" |sed 's/[,.:;]/ /g')
for s in "$ChoiceClean"; do
SelectedUpdates+=( "${NumberedUpdates[$s]}" )
done
fi
done
@ -92,7 +96,7 @@ for i in $(docker ps --filter "name=$SearchName" --format '{{.Names}}') ; do
RepoUrl=$(docker inspect "$i" --format='{{.Config.Image}}')
LocalHash=$(docker image inspect "$RepoUrl" --format '{{.RepoDigests}}')
RegHash=$($regbin image digest --list "$RepoUrl" 2>/dev/null)
# Check if regtcl produces errors - add to GotErrors if so.
# Add container to GotErrors if regctl encounter problems.
if [ $? -eq 0 ] ; then
if [[ "$LocalHash" = *"$RegHash"* ]] ; then NoUpdates+=("$i"); else GotUpdates+=("$i"); fi
else