Skip to content

Commit f063f96

Browse files
Merge pull request containers#21711 from rhatdan/docs22
[CI:DOCS] Fix up example description of podman-kill.1.md.in
2 parents 8707227 + 803410f commit f063f96

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/source/markdown/podman-kill.1.md.in

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,33 +24,33 @@ Signal all running and paused containers.
2424

2525
## EXAMPLE
2626

27-
Kill container with a given name
27+
Kill container with a given name:
2828
```
2929
podman kill mywebserver
3030
```
3131

32-
Kill container with a given ID
32+
Kill container with a given ID:
3333
```
3434
podman kill 860a4b23
3535
```
3636

37-
Terminate container by sending `TERM` signal
37+
Terminate container by sending `TERM` signal:
3838
```
3939
podman kill --signal TERM 860a4b23
4040
```
4141

4242
Kill the latest container. (This option is not available with the remote Podman client, including Mac and Windows
43-
(excluding WSL2) machines)
43+
(excluding WSL2) machines):
4444
```
4545
podman kill --latest
4646
```
4747

48-
Terminate all containers by sending `KILL` signal
48+
Terminate all containers by sending `KILL` signal:
4949
```
5050
podman kill --signal KILL -a
5151
```
5252

53-
Kill container using ID specified in a given files
53+
Kill containers using ID specified in a given files:
5454
```
5555
podman kill --cidfile /home/user/cidfile-1
5656
podman kill --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2

0 commit comments

Comments
 (0)