From 20e3951aebc5343b2029f21a304e7a8992c8d554 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 19 Oct 2022 14:25:24 -0700 Subject: [PATCH] Remove "experimental" gates around "--platform" in bash completion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `--platform` flag has been out of experimental for a while now. 🎉 Signed-off-by: Tianon Gravi (cherry picked from commit 9505330b0711e9882af85f298e4dfa5f16c4a507) Signed-off-by: Sebastiaan van Stijn --- contrib/completion/bash/docker | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/contrib/completion/bash/docker b/contrib/completion/bash/docker index 0478f867ef7..170732c23df 100644 --- a/contrib/completion/bash/docker +++ b/contrib/completion/bash/docker @@ -1954,6 +1954,7 @@ _docker_container_run_and_create() { --oom-score-adj --pid --pids-limit + --platform --publish -p --pull --restart @@ -1981,9 +1982,6 @@ _docker_container_run_and_create() { --io-maxiops --isolation " - __docker_server_is_experimental && options_with_args+=" - --platform - " local boolean_options=" --disable-content-trust=false @@ -2831,6 +2829,7 @@ _docker_image_build() { --memory -m --memory-swap --network + --platform --shm-size --tag -t --target @@ -2851,9 +2850,6 @@ _docker_image_build() { " if __docker_server_is_experimental ; then - options_with_args+=" - --platform - " boolean_options+=" --squash " @@ -2862,7 +2858,6 @@ _docker_image_build() { if [ "$DOCKER_BUILDKIT" = "1" ] ; then options_with_args+=" --output -o - --platform --progress --secret --ssh @@ -2993,8 +2988,7 @@ _docker_image_import() { case "$cur" in -*) - local options="--change -c --help --message -m" - __docker_server_is_experimental && options+=" --platform" + local options="--change -c --help --message -m --platform" COMPREPLY=( $( compgen -W "$options" -- "$cur" ) ) ;; *) @@ -3102,9 +3096,7 @@ _docker_image_pull() { case "$cur" in -*) - local options="--all-tags -a --disable-content-trust=false --help --quiet -q" - __docker_server_is_experimental && options+=" --platform" - + local options="--all-tags -a --disable-content-trust=false --help --platform --quiet -q" COMPREPLY=( $( compgen -W "$options" -- "$cur" ) ) ;; *)