mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-19 00:32:34 +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
|
-l FILE optional Log output in FILE
|
||||||
-c CHECK optional Comma delimited list of specific check(s)
|
-c CHECK optional Comma delimited list of specific check(s)
|
||||||
-e CHECK optional Comma delimited list of specific check(s) to exclude
|
-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
|
-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 name to exclude from check
|
-x EXCLUDE optional Comma delimited list of patterns within a container or image name to exclude from check
|
||||||
-t TARGET optional Comma delimited list of images name to check
|
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -63,7 +62,6 @@ do
|
||||||
e) checkexclude="$OPTARG" ;;
|
e) checkexclude="$OPTARG" ;;
|
||||||
i) include="$OPTARG" ;;
|
i) include="$OPTARG" ;;
|
||||||
x) exclude="$OPTARG" ;;
|
x) exclude="$OPTARG" ;;
|
||||||
t) imgList="$OPTARG" ;;
|
|
||||||
*) usage; exit 1 ;;
|
*) usage; exit 1 ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue