1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Add bash completion for docker rename

Signed-off-by: Mike Dillon <mike@embody.org>
This commit is contained in:
Mike Dillon 2015-02-18 11:49:05 -08:00
parent eb0d65933d
commit ded88a3170

View file

@ -552,6 +552,13 @@ _docker_push() {
fi
}
_docker_rename() {
local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_containers_all
fi
}
_docker_restart() {
case "$prev" in
--time|-t)
@ -914,6 +921,7 @@ _docker() {
ps
pull
push
rename
restart
rm
rmi