mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #19982 from tianon/seccomp-completion
Add some basic bash completion for seccomp values
This commit is contained in:
commit
ea4086ea91
1 changed files with 5 additions and 0 deletions
|
@ -1768,6 +1768,11 @@ _docker_run() {
|
||||||
__docker_nospace
|
__docker_nospace
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
seccomp:*)
|
||||||
|
local cur=${cur##*:}
|
||||||
|
_filedir
|
||||||
|
COMPREPLY+=( $( compgen -W "unconfined" -- "$cur" ) )
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
COMPREPLY=( $( compgen -W "label apparmor seccomp" -S ":" -- "$cur") )
|
COMPREPLY=( $( compgen -W "label apparmor seccomp" -S ":" -- "$cur") )
|
||||||
__docker_nospace
|
__docker_nospace
|
||||||
|
|
Loading…
Add table
Reference in a new issue