Move bash completion logic to new subcommand: start
Signed-off-by: Harald Albers <github@albersweb.de> Upstream-commit: 2bbfd01e7a0e70fcbfdc756c393a8d8aef217d76 Component: engine
This commit is contained in:
@ -1582,7 +1582,16 @@ _docker_container_run() {
|
||||
}
|
||||
|
||||
_docker_container_start() {
|
||||
_docker_start
|
||||
__docker_complete_detach-keys && return
|
||||
|
||||
case "$cur" in
|
||||
-*)
|
||||
COMPREPLY=( $( compgen -W "--attach -a --detach-keys --help --interactive -i" -- "$cur" ) )
|
||||
;;
|
||||
*)
|
||||
__docker_complete_containers_stopped
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
_docker_container_stats() {
|
||||
@ -2900,16 +2909,7 @@ _docker_search() {
|
||||
}
|
||||
|
||||
_docker_start() {
|
||||
__docker_complete_detach-keys && return
|
||||
|
||||
case "$cur" in
|
||||
-*)
|
||||
COMPREPLY=( $( compgen -W "--attach -a --detach-keys --help --interactive -i" -- "$cur" ) )
|
||||
;;
|
||||
*)
|
||||
__docker_complete_containers_stopped
|
||||
;;
|
||||
esac
|
||||
_docker_container_start
|
||||
}
|
||||
|
||||
_docker_stats() {
|
||||
|
||||
Reference in New Issue
Block a user