summaryrefslogtreecommitdiff
path: root/completions
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-01-22 13:56:08 -0600
committerbaude <bbaude@redhat.com>2018-01-23 08:54:57 -0600
commitb74e38b042cb32cead9adacbe75256a89e5cb664 (patch)
treeef61dc8a9e6ae41f46dea5fc1a1d22f78b1d4b70 /completions
parenta03e040f0bb1d32645879b2c8bec7c5e1fe0561f (diff)
downloadpodman-b74e38b042cb32cead9adacbe75256a89e5cb664.tar.gz
podman-b74e38b042cb32cead9adacbe75256a89e5cb664.tar.bz2
podman-b74e38b042cb32cead9adacbe75256a89e5cb664.zip
podman port
podman port reports the port mappings per container. it can be used to report the ports ofa single container or latest container or all containers. in the case of a single container, the user can add an option filter for port and protocol. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'completions')
-rw-r--r--completions/bash/podman13
1 files changed, 13 insertions, 0 deletions
diff --git a/completions/bash/podman b/completions/bash/podman
index b1a19f255..f8086220e 100644
--- a/completions/bash/podman
+++ b/completions/bash/podman
@@ -1413,6 +1413,18 @@ _podman_pause() {
_complete_ "$options_with_args" "$boolean_options"
}
+_podman_port() {
+ local options_with_args="
+ --help -h
+ "
+ local boolean_options="
+ --all
+ -a
+ -l
+ --latest"
+ _complete_ "$options_with_args" "$boolean_options"
+}
+
_podman_ps() {
local options_with_args="
--filter -f
@@ -1566,6 +1578,7 @@ _podman_podman() {
logs
mount
pause
+ port
ps
pull
push