You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add information about --latest support on man pages
On Mac and Windows systems the --latest option is not supported
this PR mentions this fact in the examples section of the man page.
Also added documentation and consistency to the man pages examples
sections.
Signed-off-by: Daniel J Walsh <[email protected]>
Copy file name to clipboardExpand all lines: docs/source/markdown/podman-attach.1.md.in
+1-1
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Attach to a container called "foobar".
31
31
$ podman attach foobar
32
32
```
33
33
34
-
Attach to the latest created container.
34
+
Attach to the latest created container. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines)
Inspect the latest container created for its EffectiveCaps field. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines)
Inspect the latest container created for its EffectiveCaps field. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines)
Copy file name to clipboardExpand all lines: docs/source/markdown/podman-kube-play.1.md.in
+8-8
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Using the `--down` command line option, it is also capable of tearing down the p
14
14
15
15
Using the `--replace` command line option, it tears down the pods(if any) created by a previous run of `podman kube play` and recreate the pods with the Kubernetes YAML file.
16
16
17
-
Ideally the input file is created by Podman (see podman-kube-generate(1)). This guarantees a smooth import and expected results.
17
+
Ideally the input file is created by the Podman command (see podman-kube-generate(1)). This guarantees a smooth import and expected results.
18
18
19
19
Currently, the supported Kubernetes kinds are:
20
20
@@ -270,19 +270,19 @@ upon exit.
270
270
271
271
## EXAMPLES
272
272
273
-
Recreate the pod and containers as described in a file called `demo.yml`
273
+
Recreate the pod and containers described in the specified host YAML file.
Add login credentials for user test with password test to localhost:5000 registry disabling tls verification requirement.
98
103
```
99
104
$ podman login --tls-verify=false -u test -p test localhost:5000
100
105
Login Succeeded!
101
106
```
102
107
108
+
Add login credentials for user foo with password bar to localhost:5000 registry using the certificate directory /etc/containers/certs.d.
103
109
```
104
110
$ podman login --cert-dir /etc/containers/certs.d/ -u foo -p bar localhost:5000
105
111
Login Succeeded!
106
112
```
107
113
114
+
Add login credentials for docker.io into the default authorization file for user testuser with password information provided via stdin from a file on disk.
0 commit comments