forked from apptainer/singularity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck.info
32 lines (25 loc) · 962 Bytes
/
check.info
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
NAME="check"
SECTION="management"
SUMMARY="Perform container lint checks"
USAGE="singularity [...] check [exec options...] <container path>"
print_help() {
cat<<EOF
This command will run lint and security checks for an image.
Note that some checks require sudo.
CHECK OPTIONS:
-l|--low Specify low threshold (all checks, default)
-m|--med Perform medium and high checks
--high Perform only checks at level high
-t|--tag tag to filter checks. default is "default"
Available: default, security, docker, clean
EXAMPLES:
# Perform all default checks, these are the same
$ singularity check ubuntu.img
$ singularity check --tag default ubuntu.img
# Perform checks with tag "clean"
$ singularity check --tag clean ubuntu.img
For additional help, please visit our public documentation pages which are
found at:
https://singularityware.github.io
EOF
}