Add bash completion for `docker build --cache-from`

Signed-off-by: Harald Albers <github@albersweb.de>
master
Harald Albers 2016-11-12 10:12:47 -08:00 committed by Tibor Vass
parent 5890dd64eb
commit 7c22a4d86c
1 changed files with 5 additions and 0 deletions

View File

@ -1901,6 +1901,7 @@ _docker_image() {
_docker_image_build() {
local options_with_args="
--build-arg
--cache-from
--cgroup-parent
--cpuset-cpus
--cpuset-mems
@ -1936,6 +1937,10 @@ _docker_image_build() {
__docker_nospace
return
;;
--cache-from)
__docker_complete_image_repos_and_tags
return
;;
--file|-f)
_filedir
return