github.com/stackdocker/rkt@v0.10.1-0.20151109095037-1aa827478248/Documentation/subcommands/rm.md (about) 1 # rkt rm 2 3 Cleans up all resources (files, network objects) associated with a pod just like `rkt gc`. 4 This command can be used to immediately free resources without waiting for garbage collection to run. 5 6 ``` 7 rkt rm c138310f 8 ``` 9 10 Instead of passing UUID on command line, rm command can read the UUID from a text file. 11 This can be paired with `--uuid-file-save` to remove pods by name: 12 13 ``` 14 rkt run --uuid-files-save=/run/rkt-uuids/mypod ... 15 rkt rm --uuid-file=/run/rkt-uuids/mypod 16 ```