diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-05-23 14:15:54 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-05-23 22:38:17 +0000 |
commit | 915364034f1ddf036d277830d45c54b8eb39f940 (patch) | |
tree | 968ec9dfe5a69626a69aef545a5dd429ae695cb1 /completions | |
parent | d252fa710e55fde35824dfe1f01e03e783f04a18 (diff) | |
download | podman-915364034f1ddf036d277830d45c54b8eb39f940.tar.gz podman-915364034f1ddf036d277830d45c54b8eb39f940.tar.bz2 podman-915364034f1ddf036d277830d45c54b8eb39f940.zip |
Update podman build to match buildah bud functionality
Add --label, --annotations, --idfile, --squash
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #824
Approved by: TomSweeneyRedHat
Diffstat (limited to 'completions')
-rw-r--r-- | completions/bash/podman | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index f7ae8fb85..00da883e7 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -709,18 +709,36 @@ _podman_build() { " local options_with_args=" + --add-host + --annotation --authfile --build-arg --cert-dir + --cgroup-parent + --cpu-period + --cpu-quota + --cpu-shares + --cpuset-cpus + --cpuset-mems --creds - --file -f + --file --format + --iidfile + --label + -m + --memory + --memory-swap --runtime --runtime-flag + --security-opt + --shm-size --signature-policy - --tag -t + --tag + --ulimit + -v + --volume " local all_options="$options_with_args $boolean_options" |