mirror of https://github.com/docker/cli.git
Move bash completion logic to new subcommand: start
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
05656756e6
commit
f58b6746d7
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue