mirror of https://github.com/docker/cli.git
Merge pull request #1810 from albers/completion-buildkit
Add BuildKit specific options to bash completion
This commit is contained in:
commit
fe19be2530
|
@ -2863,7 +2863,6 @@ _docker_image_build() {
|
||||||
"
|
"
|
||||||
|
|
||||||
local boolean_options="
|
local boolean_options="
|
||||||
--compress
|
|
||||||
--disable-content-trust=false
|
--disable-content-trust=false
|
||||||
--force-rm
|
--force-rm
|
||||||
--help
|
--help
|
||||||
|
@ -2872,15 +2871,34 @@ _docker_image_build() {
|
||||||
--quiet -q
|
--quiet -q
|
||||||
--rm
|
--rm
|
||||||
"
|
"
|
||||||
|
|
||||||
if __docker_server_is_experimental ; then
|
if __docker_server_is_experimental ; then
|
||||||
options_with_args+="
|
options_with_args+="
|
||||||
--platform
|
--platform
|
||||||
"
|
"
|
||||||
boolean_options+="
|
boolean_options+="
|
||||||
--squash
|
--squash
|
||||||
|
"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$DOCKER_BUILDKIT" = "1" ] ; then
|
||||||
|
options_with_args+="
|
||||||
|
--output -o
|
||||||
|
--platform
|
||||||
|
--progress
|
||||||
|
--secret
|
||||||
|
--ssh
|
||||||
|
"
|
||||||
|
else
|
||||||
|
boolean_options+="
|
||||||
|
--compress
|
||||||
|
"
|
||||||
|
if __docker_server_is_experimental ; then
|
||||||
|
boolean_options+="
|
||||||
--stream
|
--stream
|
||||||
"
|
"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
local all_options="$options_with_args $boolean_options"
|
local all_options="$options_with_args $boolean_options"
|
||||||
|
|
||||||
|
@ -2926,6 +2944,10 @@ _docker_image_build() {
|
||||||
esac
|
esac
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
|
--progress)
|
||||||
|
COMPREPLY=( $( compgen -W "auto plain tty" -- "$cur" ) )
|
||||||
|
return
|
||||||
|
;;
|
||||||
--tag|-t)
|
--tag|-t)
|
||||||
__docker_complete_images --repo --tag
|
__docker_complete_images --repo --tag
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue