mirror of https://github.com/docker/docs.git
Merge pull request #27 from shykes/pr_out_update_usage_message
This commit is contained in:
commit
3f8d2662de
|
@ -15,10 +15,9 @@ import (
|
||||||
func main() {
|
func main() {
|
||||||
app := cli.NewApp()
|
app := cli.NewApp()
|
||||||
app.Name = "swarmd"
|
app.Name = "swarmd"
|
||||||
app.Usage = "Control a heterogenous distributed system with the Docker API"
|
app.Usage = "Compose distributed systems from lightweight services"
|
||||||
app.Version = "0.0.1"
|
app.Version = "0.0.1"
|
||||||
app.Flags = []cli.Flag{
|
app.Flags = []cli.Flag{
|
||||||
cli.StringFlag{"backend", "debug", "load a backend"},
|
|
||||||
}
|
}
|
||||||
app.Action = cmdDaemon
|
app.Action = cmdDaemon
|
||||||
app.Run(os.Args)
|
app.Run(os.Args)
|
||||||
|
|
Loading…
Reference in New Issue