add better docs to command help

Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
This commit is contained in:
Evan Hazlett 2015-02-23 10:33:27 -05:00
parent 13b66e7956
commit 4de170ba9e
No known key found for this signature in database
GPG Key ID: A519480096146526
1 changed files with 10 additions and 10 deletions

View File

@ -183,17 +183,17 @@ var Commands = []cli.Command{
}, },
{ {
Name: "inspect", Name: "inspect",
Usage: "Inspect information about a machine", Usage: "Inspect information about a machine. Argument is a machine name. Will use the active machine if none is provided.",
Action: cmdInspect, Action: cmdInspect,
}, },
{ {
Name: "ip", Name: "ip",
Usage: "Get the IP address of a machine", Usage: "Get the IP address of a machine. Argument is a machine name. Will use the active machine if none is provided.",
Action: cmdIp, Action: cmdIp,
}, },
{ {
Name: "kill", Name: "kill",
Usage: "Kill a machine", Usage: "Kill a machine. Argument is a machine name. Will use the active machine if none is provided.",
Action: cmdKill, Action: cmdKill,
}, },
{ {
@ -209,7 +209,7 @@ var Commands = []cli.Command{
}, },
{ {
Name: "restart", Name: "restart",
Usage: "Restart a machine", Usage: "Restart a machine. Argument is a machine name. Will use the active machine if none is provided.",
Action: cmdRestart, Action: cmdRestart,
}, },
{ {
@ -220,7 +220,7 @@ var Commands = []cli.Command{
}, },
}, },
Name: "rm", Name: "rm",
Usage: "Remove a machine", Usage: "Remove a machine. Argument is a machine name. Will use the active machine if none is provided.",
Action: cmdRm, Action: cmdRm,
}, },
{ {
@ -236,26 +236,26 @@ var Commands = []cli.Command{
}, },
{ {
Name: "ssh", Name: "ssh",
Usage: "Log into or run a command on a machine with SSH", Usage: "Log into or run a command on a machine with SSH. Arguments are [machine-name] command. Will use the active machine if none is provided.",
Action: cmdSsh, Action: cmdSsh,
}, },
{ {
Name: "start", Name: "start",
Usage: "Start a machine", Usage: "Start a machine. Argument is a machine name. Will use the active machine if none is provided.",
Action: cmdStart, Action: cmdStart,
}, },
{ {
Name: "stop", Name: "stop",
Usage: "Stop a machine", Usage: "Stop a machine. Argument is a machine name. Will use the active machine if none is provided.",
Action: cmdStop, Action: cmdStop,
}, },
{ {
Name: "upgrade", Name: "upgrade",
Usage: "Upgrade a machine to the latest version of Docker", Usage: "Upgrade a machine to the latest version of Docker. Argument is a machine name. Will use the active machine if none is provided.",
Action: cmdUpgrade, Action: cmdUpgrade,
}, },
{ {
Name: "url", Name: "url. Argument is a machine name. Will use the active machine if none is provided.",
Usage: "Get the URL of a machine", Usage: "Get the URL of a machine",
Action: cmdUrl, Action: cmdUrl,
}, },