Skip to content

Commit 5effdcc

Browse files
committed
Fix up example description of podman-system commands
Signed-off-by: Daniel J Walsh <[email protected]>
1 parent 9fc4508 commit 5effdcc

7 files changed

+26
-0
lines changed

docs/source/markdown/podman-system-connection-add.1.md

+11
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,24 @@ Port for ssh destination. The default value is `22`.
3636
Path to the Podman service unix domain socket on the ssh destination host
3737

3838
## EXAMPLE
39+
40+
Add a named system connection:
3941
```
4042
$ podman system connection add QA podman.example.com
43+
```
4144

45+
Add a system connection using SSH data:
46+
```
4247
$ podman system connection add --identity ~/.ssh/dev_rsa production ssh://[email protected]:2222
48+
```
4349

50+
Add a named system connection to local Unix domain socket:
51+
```
4452
$ podman system connection add testing unix:///run/podman/podman.sock
53+
```
4554

55+
Add a named system connection to local tcp socket:
56+
```
4657
$ podman system connection add debug tcp://localhost:8080
4758
```
4859
## SEE ALSO

docs/source/markdown/podman-system-connection-default.1.md

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ podman\-system\-connection\-default - Set named destination as default for the P
1010
Set named ssh destination as default destination for the Podman service.
1111

1212
## EXAMPLE
13+
14+
Set the specified connection as default:
1315
```
1416
$ podman system connection default production
1517
```

docs/source/markdown/podman-system-connection-list.1.md

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ Valid placeholders for the Go template listed below:
3131
Only show connection names
3232

3333
## EXAMPLE
34+
35+
List system connections:
3436
```
3537
$ podman system connection list
3638
Name URI Identity Default ReadWrite

docs/source/markdown/podman-system-connection-remove.1.md

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ Delete named ssh destination.
1616
Remove all connections.
1717

1818
## EXAMPLE
19+
20+
Remove the specified system connection:
1921
```
2022
$ podman system connection remove production
2123
```

docs/source/markdown/podman-system-connection-rename.1.md

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ podman\-system\-connection\-rename - Rename the destination for Podman service
1010
Rename ssh destination from *old* to *new*.
1111

1212
## EXAMPLE
13+
14+
Rename the specified connection:
1315
```
1416
$ podman system connection rename laptop devel
1517
```

docs/source/markdown/podman-system-connection.1.md

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ not be edited with the **podman system connection** commands.
3333
| rename | [podman-system-connection\-rename(1)](podman-system-connection-rename.1.md) | Rename the destination for Podman service |
3434

3535
## EXAMPLE
36+
37+
List system connections:
3638
```
3739
$ podman system connection list
3840
Name URI Identity Default ReadWrite

docs/source/markdown/podman-system-df.1.md

+5
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,18 @@ Valid placeholders for the Go template are listed below:
3131
Show detailed information on space usage
3232

3333
## EXAMPLE
34+
35+
Show disk usage:
3436
```
3537
$ podman system df
3638
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
3739
Images 6 2 281MB 168MB (59%)
3840
Containers 3 1 0B 0B (0%)
3941
Local Volumes 1 1 22B 0B (0%)
42+
```
4043

44+
Show disk usage in verbose mode:
45+
```
4146
$ podman system df -v
4247
Images space usage:
4348

0 commit comments

Comments
 (0)