diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-06-07 01:00:07 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-13 12:49:32 +0000 |
commit | be217caa3856c76a6b997c203422715e13b0335a (patch) | |
tree | 49190e0813ba860ccc74d017ccf12562e009c6bc /completions/bash | |
parent | 95ea3d4f3a77d014fdd1be43411ba96a85091712 (diff) | |
download | podman-be217caa3856c76a6b997c203422715e13b0335a.tar.gz podman-be217caa3856c76a6b997c203422715e13b0335a.tar.bz2 podman-be217caa3856c76a6b997c203422715e13b0335a.zip |
Vendor in latest buildah code
This will add --layers support.
Also add missing information in man pages on podman build features.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #938
Approved by: umohnani8
Diffstat (limited to 'completions/bash')
-rw-r--r-- | completions/bash/podman | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 12e4bb523..a5fd899d8 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -697,13 +697,15 @@ _podman_commit() { _podman_build() { local boolean_options=" - --build --help -h + --layers + --no-cache --pull --pull-always --quiet -q + --squash --tls-verify " @@ -714,6 +716,8 @@ _podman_build() { --build-arg --cert-dir --cgroup-parent + --cni-config-dir + --cni-plugin-path --cpu-period --cpu-quota --cpu-shares @@ -724,10 +728,14 @@ _podman_build() { --file --format --iidfile + --ipc --label -m --memory --memory-swap + --net + --network + --pid --runtime --runtime-flag --security-opt @@ -736,8 +744,14 @@ _podman_build() { -t --tag --ulimit - -v + --userns + --userns-uid-map + --userns-gid-map + --userns-uid-map-user + --userns-gid-map-group + --uts --volume + -v " local all_options="$options_with_args $boolean_options" |