mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-18 16:22:33 +01:00
Remove -t parameter
$images now set via -i and -x parameters Signed-off-by: Niall T <jammasterj89@gmail.com>
This commit is contained in:
parent
7f29aebd71
commit
c53157e184
1 changed files with 2 additions and 4 deletions
|
@ -44,9 +44,8 @@ usage () {
|
|||
-l FILE optional Log output in FILE
|
||||
-c CHECK optional Comma delimited list of specific check(s)
|
||||
-e CHECK optional Comma delimited list of specific check(s) to exclude
|
||||
-i INCLUDE optional Comma delimited list of patterns within a container name to check
|
||||
-x EXCLUDE optional Comma delimited list of patterns within a container name to exclude from check
|
||||
-t TARGET optional Comma delimited list of images name to check
|
||||
-i INCLUDE optional Comma delimited list of patterns within a container or image name to check
|
||||
-x EXCLUDE optional Comma delimited list of patterns within a container or image name to exclude from check
|
||||
EOF
|
||||
}
|
||||
|
||||
|
@ -63,7 +62,6 @@ do
|
|||
e) checkexclude="$OPTARG" ;;
|
||||
i) include="$OPTARG" ;;
|
||||
x) exclude="$OPTARG" ;;
|
||||
t) imgList="$OPTARG" ;;
|
||||
*) usage; exit 1 ;;
|
||||
esac
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue