Add bash completion for experimental `build --stream`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-11-08 14:32:14 +01:00
parent ee0615dc97
commit c852393bff
1 changed files with 4 additions and 1 deletions

View File

@ -2467,7 +2467,10 @@ _docker_image_build() {
--quiet -q
--rm
"
__docker_daemon_is_experimental && boolean_options+="--squash"
__docker_daemon_is_experimental && boolean_options+="
--squash
--stream
"
local all_options="$options_with_args $boolean_options"