mirror of https://github.com/docker/cli.git
Merge pull request #279 from albers/completion-build--iidfile
Add bash completion for `build --iidfile`
This commit is contained in:
commit
c394cd9bb7
|
@ -2432,6 +2432,7 @@ _docker_image_build() {
|
||||||
--cpu-period
|
--cpu-period
|
||||||
--cpu-quota
|
--cpu-quota
|
||||||
--file -f
|
--file -f
|
||||||
|
--iidfile
|
||||||
--label
|
--label
|
||||||
--memory -m
|
--memory -m
|
||||||
--memory-swap
|
--memory-swap
|
||||||
|
@ -2476,7 +2477,7 @@ _docker_image_build() {
|
||||||
__docker_complete_image_repos_and_tags
|
__docker_complete_image_repos_and_tags
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
--file|-f)
|
--file|-f|--iidfile)
|
||||||
_filedir
|
_filedir
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue