File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -24,33 +24,33 @@ Signal all running and paused containers.
24
24
25
25
## EXAMPLE
26
26
27
- Kill container with a given name
27
+ Kill container with a given name:
28
28
```
29
29
podman kill mywebserver
30
30
```
31
31
32
- Kill container with a given ID
32
+ Kill container with a given ID:
33
33
```
34
34
podman kill 860a4b23
35
35
```
36
36
37
- Terminate container by sending `TERM` signal
37
+ Terminate container by sending `TERM` signal:
38
38
```
39
39
podman kill --signal TERM 860a4b23
40
40
```
41
41
42
42
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):
44
44
```
45
45
podman kill --latest
46
46
```
47
47
48
- Terminate all containers by sending `KILL` signal
48
+ Terminate all containers by sending `KILL` signal:
49
49
```
50
50
podman kill --signal KILL -a
51
51
```
52
52
53
- Kill container using ID specified in a given files
53
+ Kill containers using ID specified in a given files:
54
54
```
55
55
podman kill --cidfile /home/user/cidfile-1
56
56
podman kill --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2
You can’t perform that action at this time.
0 commit comments