diff --git a/cmd/dist/list.go b/cmd/dist/list.go new file mode 100644 index 000000000..e540d4d85 --- /dev/null +++ b/cmd/dist/list.go @@ -0,0 +1,14 @@ +package main + +import "github.com/codegangsta/cli" + +var ( + commandList = cli.Command{ + Name: "images", + Usage: "List available images", + Action: imageList, + } +) + +func imageList(c *cli.Context) { +} diff --git a/cmd/dist/main.go b/cmd/dist/main.go new file mode 100644 index 000000000..34a2b514e --- /dev/null +++ b/cmd/dist/main.go @@ -0,0 +1,21 @@ +package main + +import ( + "os" + + "github.com/codegangsta/cli" +) + +func main() { + app := cli.NewApp() + app.Name = "dist" + app.Usage = "Package and ship Docker content" + + app.Action = commandList.Action + app.Commands = []cli.Command{ + commandList, + commandPull, + commandPush, + } + app.Run(os.Args) +} diff --git a/cmd/dist/pull.go b/cmd/dist/pull.go new file mode 100644 index 000000000..8f96129cd --- /dev/null +++ b/cmd/dist/pull.go @@ -0,0 +1,21 @@ +package main + +import "github.com/codegangsta/cli" + +var ( + commandPull = cli.Command{ + Name: "pull", + Usage: "Pull and verify an image from a registry", + Action: imagePull, + Flags: []cli.Flag{ + cli.StringFlag{ + Name: "r,registry", + Value: "hub.docker.io", + Usage: "Registry to use (e.g.: localhost:5000)", + }, + }, + } +) + +func imagePull(c *cli.Context) { +} diff --git a/cmd/dist/push.go b/cmd/dist/push.go new file mode 100644 index 000000000..c39922aa4 --- /dev/null +++ b/cmd/dist/push.go @@ -0,0 +1,21 @@ +package main + +import "github.com/codegangsta/cli" + +var ( + commandPush = cli.Command{ + Name: "push", + Usage: "Push an image to a registry", + Action: imagePush, + Flags: []cli.Flag{ + cli.StringFlag{ + Name: "r,registry", + Value: "hub.docker.io", + Usage: "Registry to use (e.g.: localhost:5000)", + }, + }, + } +) + +func imagePush(*cli.Context) { +}