1NAME() NAME()
2
3
4
5 runc delete - delete any resources held by the container often used
6 with detached container
7
8
9
11 runc delete [command options] <container-id>
12
13
14 Where "<container-id>" is the name for the instance of the container.
15
16
17
19 --force, -f Forcibly deletes the container if it is still running
20 (uses SIGKILL)
21
22
23
25 For example, if the container id is "ubuntu01" and runc list currently
26 shows the status of "ubuntu01" as "stopped" the following will delete
27 resources held for "ubuntu01" removing "ubuntu01" from the runc list of
28 containers:
29
30
31 # runc delete ubuntu01
32
33
34
35
36 NAME()