1NAME() NAME()
2
3
4
5 runc kill - kill sends the specified signal (default: SIGTERM) to the
6 container's init process
7
8
9
11 runc kill [command options] <container-id> <signal>
12
13
14 Where "<container-id>" is the name for the instance of the container
15 and "<signal>" is the signal to be sent to the init process.
16
17
18
20 --all, -a send the specified signal to all processes inside the con‐
21 tainer
22
23
24
26 For example, if the container id is "ubuntu01" the following will send
27 a "KILL" signal to the init process of the "ubuntu01" container:
28
29
30 # runc kill ubuntu01 KILL
31
32
33
34
35 NAME()