mirror of https://github.com/docker/cli.git
Add bash completion for `docker checkpoint`
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
d75f24fd9d
commit
a4ce26ba47
|
@ -936,6 +936,94 @@ _docker_build() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
_docker_checkpoint() {
|
||||||
|
local subcommands="
|
||||||
|
create
|
||||||
|
ls
|
||||||
|
rm
|
||||||
|
"
|
||||||
|
local aliases="
|
||||||
|
list
|
||||||
|
remove
|
||||||
|
"
|
||||||
|
__docker_subcommands "$subcommands $aliases" && return
|
||||||
|
|
||||||
|
case "$cur" in
|
||||||
|
-*)
|
||||||
|
COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
_docker_checkpoint_create() {
|
||||||
|
case "$prev" in
|
||||||
|
--checkpoint-dir)
|
||||||
|
_filedir -d
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
case "$cur" in
|
||||||
|
-*)
|
||||||
|
COMPREPLY=( $( compgen -W "--checkpoint-dir --help --leave-running" -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
local counter=$(__docker_pos_first_nonflag '--checkpoint-dir')
|
||||||
|
if [ $cword -eq $counter ]; then
|
||||||
|
__docker_complete_containers_running
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
_docker_checkpoint_ls() {
|
||||||
|
case "$prev" in
|
||||||
|
--checkpoint-dir)
|
||||||
|
_filedir -d
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
case "$cur" in
|
||||||
|
-*)
|
||||||
|
COMPREPLY=( $( compgen -W "--checkpoint-dir --help" -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
local counter=$(__docker_pos_first_nonflag '--checkpoint-dir')
|
||||||
|
if [ $cword -eq $counter ]; then
|
||||||
|
__docker_complete_containers_all
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
_docker_checkpoint_rm() {
|
||||||
|
case "$prev" in
|
||||||
|
--checkpoint-dir)
|
||||||
|
_filedir -d
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
case "$cur" in
|
||||||
|
-*)
|
||||||
|
COMPREPLY=( $( compgen -W "--checkpoint-dir --help" -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
local counter=$(__docker_pos_first_nonflag '--checkpoint-dir')
|
||||||
|
if [ $cword -eq $counter ]; then
|
||||||
|
__docker_complete_containers_all
|
||||||
|
elif [ $cword -eq $(($counter + 1)) ]; then
|
||||||
|
COMPREPLY=( $( compgen -W "$(__docker_q checkpoint ls "$prev" | sed 1d)" -- "$cur" ) )
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
_docker_container() {
|
_docker_container() {
|
||||||
local subcommands="
|
local subcommands="
|
||||||
attach
|
attach
|
||||||
|
@ -1644,9 +1732,25 @@ _docker_container_run() {
|
||||||
_docker_container_start() {
|
_docker_container_start() {
|
||||||
__docker_complete_detach-keys && return
|
__docker_complete_detach-keys && return
|
||||||
|
|
||||||
|
case "$prev" in
|
||||||
|
--checkpoint)
|
||||||
|
if [ __docker_is_experimental ] ; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
--checkpoint-dir)
|
||||||
|
if [ __docker_is_experimental ] ; then
|
||||||
|
_filedir -d
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
-*)
|
-*)
|
||||||
COMPREPLY=( $( compgen -W "--attach -a --detach-keys --help --interactive -i" -- "$cur" ) )
|
local options="--attach -a --detach-keys --help --interactive -i"
|
||||||
|
__docker_is_experimental && options+=" --checkpoint --checkpoint-dir"
|
||||||
|
COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
__docker_complete_containers_stopped
|
__docker_complete_containers_stopped
|
||||||
|
@ -4173,6 +4277,7 @@ _docker() {
|
||||||
)
|
)
|
||||||
|
|
||||||
local experimental_commands=(
|
local experimental_commands=(
|
||||||
|
checkpoint
|
||||||
deploy
|
deploy
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue