Merge pull request #772 from 14rcole/kpod-rename

implement kpod rename
This commit is contained in:
Mrunal Patel 2017-08-17 10:04:16 -07:00 committed by GitHub
commit a5591d34b7
9 changed files with 257 additions and 1 deletions

View file

@ -34,6 +34,7 @@ func main() {
mountCommand,
pullCommand,
pushCommand,
renameCommand,
rmiCommand,
saveCommand,
tagCommand,
@ -57,6 +58,10 @@ func main() {
Name: "runroot",
Usage: "path to the 'run directory' where all state information is stored",
},
cli.StringFlag{
Name: "runtime",
Usage: "path to the OCI-compatible binary used to run containers, default is /usr/bin/runc",
},
cli.StringFlag{
Name: "storage-driver, s",
Usage: "select which storage driver is used to manage storage of images and containers (default is overlay2)",