diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2022-09-09 09:06:18 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2022-09-15 08:17:15 -0400 |
commit | 3508bd22fe355630453d497d905e480974a84b96 (patch) | |
tree | 42874103bb7d0329796598fc251e6e8f4fac1bdc /docs/source | |
parent | 4fc18d07a6b206476421ed134f0eeec1221936c2 (diff) | |
download | podman-3508bd22fe355630453d497d905e480974a84b96.tar.gz podman-3508bd22fe355630453d497d905e480974a84b96.tar.bz2 podman-3508bd22fe355630453d497d905e480974a84b96.zip |
Add support for podman context as alias to podman system connection
Alias
podman --context -> podman --connection
podman context use -> podman system connection default
podman context rm -> podman system connection rm
podman context create -> podman system connection add
podman context ls ->podman system connection ls
podman context inspect ->podman system connection ls --json (For
specified connections)
Podman context is a hidden command, but can be used for existing scripts
that assume Docker under the covers.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/markdown/podman-system-connection-list.1.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-system-connection-list.1.md b/docs/source/markdown/podman-system-connection-list.1.md index 325c78a5c..99804f77f 100644 --- a/docs/source/markdown/podman-system-connection-list.1.md +++ b/docs/source/markdown/podman-system-connection-list.1.md @@ -13,7 +13,7 @@ List ssh destination(s) for podman service(s). ## OPTIONS -#### **--format**=*format* +#### **--format**, **-f**=*format* Change the default output format. This can be of a supported type like 'json' or a Go template. Valid placeholders for the Go template listed below: @@ -25,6 +25,10 @@ Valid placeholders for the Go template listed below: | .URI | URI to podman service. Valid schemes are ssh://[user@]*host*[:port]*Unix domain socket*[?secure=True], unix://*Unix domain socket*, and tcp://localhost[:*port*] | | .Default | Indicates whether connection is the default | +#### **--quiet**, **-q** + +Only show connection names + ## EXAMPLE ``` $ podman system connection list |