Merge pull request #279 from albers/completion-build--iidfile

Add bash completion for `build --iidfile`
master
Vincent Demeester 2017-07-20 09:57:05 +02:00 committed by GitHub
commit c394cd9bb7
1 changed files with 2 additions and 1 deletions

View File

@ -2432,6 +2432,7 @@ _docker_image_build() {
--cpu-period
--cpu-quota
--file -f
--iidfile
--label
--memory -m
--memory-swap
@ -2476,7 +2477,7 @@ _docker_image_build() {
__docker_complete_image_repos_and_tags
return
;;
--file|-f)
--file|-f|--iidfile)
_filedir
return
;;