moby--moby/commands.go

1050 lines
23 KiB
Go
Raw Normal View History

2013-03-14 09:26:46 +00:00
package docker
import (
"bytes"
2013-02-14 01:28:13 +00:00
"encoding/json"
2013-04-22 16:17:47 +00:00
"flag"
"fmt"
2013-04-29 13:12:18 +00:00
"github.com/dotcloud/docker/term"
"io"
2013-04-22 16:17:47 +00:00
"io/ioutil"
"net"
"net/http"
"net/http/httputil"
2013-03-14 01:37:00 +00:00
"net/url"
2013-04-22 16:17:47 +00:00
"os"
2013-02-28 19:52:22 +00:00
"strconv"
2013-02-14 01:28:13 +00:00
"text/tabwriter"
)
2013-04-09 20:00:50 +00:00
const VERSION = "0.1.4"
var (
GIT_COMMIT string
NO_MEMORY_LIMIT bool
)
2013-04-22 16:17:47 +00:00
func ParseCommands(args []string) error {
cmds := map[string]func(args []string) error{
2013-04-26 13:08:33 +00:00
"attach": CmdAttach,
2013-04-24 14:06:03 +00:00
"commit": CmdCommit,
"diff": CmdDiff,
2013-04-24 14:32:51 +00:00
"export": CmdExport,
2013-04-22 16:17:47 +00:00
"images": CmdImages,
"info": CmdInfo,
"inspect": CmdInspect,
2013-04-22 16:17:47 +00:00
"history": CmdHistory,
"kill": CmdKill,
"logs": CmdLogs,
"port": CmdPort,
2013-04-22 16:17:47 +00:00
"ps": CmdPs,
"pull": CmdPull,
2013-04-22 16:17:47 +00:00
"restart": CmdRestart,
"rm": CmdRm,
"rmi": CmdRmi,
"run": CmdRun,
"tag": CmdTag,
2013-04-22 16:17:47 +00:00
"start": CmdStart,
"stop": CmdStop,
"version": CmdVersion,
"wait": CmdWait,
2013-04-22 16:17:47 +00:00
}
if len(args) > 0 {
cmd, exists := cmds[args[0]]
if !exists {
fmt.Println("Error: Command not found:", args[0])
2013-04-22 16:17:47 +00:00
return cmdHelp(args)
}
return cmd(args[1:])
}
return cmdHelp(args)
}
2013-04-22 16:17:47 +00:00
func cmdHelp(args []string) error {
help := "Usage: docker COMMAND [arg...]\n\nA self-sufficient runtime for linux containers.\n\nCommands:\n"
for _, cmd := range [][]string{
2013-04-26 13:08:33 +00:00
{"attach", "Attach to a running container"},
2013-04-24 14:06:03 +00:00
{"commit", "Create a new image from a container's changes"},
{"diff", "Inspect changes on a container's filesystem"},
2013-04-24 14:32:51 +00:00
{"export", "Stream the contents of a container as a tar archive"},
2013-03-23 01:15:44 +00:00
{"history", "Show the history of an image"},
{"images", "List images"},
2013-04-22 16:17:47 +00:00
// {"import", "Create a new filesystem image from the contents of a tarball"},
{"info", "Display system-wide information"},
{"inspect", "Return low-level information on a container/image"},
{"kill", "Kill a running container"},
2013-04-22 16:17:47 +00:00
// {"login", "Register or Login to the docker registry server"},
{"logs", "Fetch the logs of a container"},
{"port", "Lookup the public-facing port which is NAT-ed to PRIVATE_PORT"},
{"ps", "List containers"},
{"pull", "Pull an image or a repository from the docker registry server"},
2013-04-22 16:17:47 +00:00
// {"push", "Push an image or a repository to the docker registry server"},
{"restart", "Restart a running container"},
{"rm", "Remove a container"},
2013-03-15 07:47:02 +00:00
{"rmi", "Remove an image"},
{"run", "Run a command in a new container"},
{"start", "Start a stopped container"},
{"stop", "Stop a running container"},
{"tag", "Tag an image into a repository"},
2013-03-13 00:34:15 +00:00
{"version", "Show the docker version information"},
{"wait", "Block until a container stops, then print its exit code"},
} {
2013-03-21 05:42:50 +00:00
help += fmt.Sprintf(" %-10.10s%s\n", cmd[0], cmd[1])
}
2013-04-22 16:17:47 +00:00
fmt.Println(help)
return nil
}
2013-04-22 16:17:47 +00:00
/*
// 'docker login': login / register a user to registry service.
func (srv *Server) CmdLogin(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
// Read a line on raw terminal with support for simple backspace
// sequences and echo.
//
2013-03-30 07:22:24 +00:00
// This function is necessary because the login command must be done in a
// raw terminal for two reasons:
// - we have to read a password (without echoing it);
// - the rcli "protocol" only supports cannonical and raw modes and you
// can't tune it once the command as been started.
var readStringOnRawTerminal = func(stdin io.Reader, stdout io.Writer, echo bool) string {
char := make([]byte, 1)
buffer := make([]byte, 64)
var i = 0
for i < len(buffer) {
n, err := stdin.Read(char)
if n > 0 {
if char[0] == '\r' || char[0] == '\n' {
stdout.Write([]byte{'\r', '\n'})
break
} else if char[0] == 127 || char[0] == '\b' {
if i > 0 {
if echo {
stdout.Write([]byte{'\b', ' ', '\b'})
}
i--
}
} else if !unicode.IsSpace(rune(char[0])) &&
!unicode.IsControl(rune(char[0])) {
if echo {
stdout.Write(char)
}
buffer[i] = char[0]
i++
}
}
if err != nil {
if err != io.EOF {
fmt.Fprintf(stdout, "Read error: %v\r\n", err)
}
break
}
}
return string(buffer[:i])
}
var readAndEchoString = func(stdin io.Reader, stdout io.Writer) string {
return readStringOnRawTerminal(stdin, stdout, true)
}
var readString = func(stdin io.Reader, stdout io.Writer) string {
return readStringOnRawTerminal(stdin, stdout, false)
}
stdout.SetOptionRawTerminal()
cmd := rcli.Subcmd(stdout, "login", "", "Register or Login to the docker registry server")
if err := cmd.Parse(args); err != nil {
return nil
}
var username string
var password string
var email string
fmt.Fprint(stdout, "Username (", srv.runtime.authConfig.Username, "): ")
username = readAndEchoString(stdin, stdout)
if username == "" {
username = srv.runtime.authConfig.Username
}
if username != srv.runtime.authConfig.Username {
fmt.Fprint(stdout, "Password: ")
password = readString(stdin, stdout)
if password == "" {
return fmt.Errorf("Error : Password Required")
}
fmt.Fprint(stdout, "Email (", srv.runtime.authConfig.Email, "): ")
email = readAndEchoString(stdin, stdout)
if email == "" {
email = srv.runtime.authConfig.Email
}
} else {
password = srv.runtime.authConfig.Password
email = srv.runtime.authConfig.Email
}
2013-03-22 12:52:13 +00:00
newAuthConfig := auth.NewAuthConfig(username, password, email, srv.runtime.root)
status, err := auth.Login(newAuthConfig)
if err != nil {
fmt.Fprintf(stdout, "Error: %s\r\n", err)
2013-03-23 01:37:53 +00:00
} else {
srv.runtime.authConfig = newAuthConfig
}
if status != "" {
fmt.Fprint(stdout, status)
}
return nil
}
2013-04-22 16:17:47 +00:00
*/
// 'docker wait': block until a container stops
func CmdWait(args []string) error {
cmd := Subcmd("wait", "CONTAINER [CONTAINER...]", "Block until a container stops, then print its exit code.")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() < 1 {
cmd.Usage()
return nil
}
for _, name := range cmd.Args() {
body, err := call("POST", "/containers/"+name+"/wait")
if err != nil {
fmt.Printf("%s", err)
} else {
var out ApiWait
err = json.Unmarshal(body, &out)
if err != nil {
return err
}
fmt.Println(out.StatusCode)
}
}
return nil
}
2013-04-22 16:17:47 +00:00
2013-03-13 00:34:15 +00:00
// 'docker version': show version information
2013-04-22 16:17:47 +00:00
func CmdVersion(args []string) error {
cmd := Subcmd("version", "", "Show the docker version information.")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() > 0 {
cmd.Usage()
return nil
}
body, err := call("GET", "/version")
2013-04-22 16:17:47 +00:00
if err != nil {
return err
}
var out ApiVersion
2013-04-22 16:17:47 +00:00
err = json.Unmarshal(body, &out)
if err != nil {
return err
}
fmt.Println("Version:", out.Version)
fmt.Println("Git Commit:", out.GitCommit)
if out.MemoryLimitDisabled {
fmt.Println("Memory limit disabled")
}
2013-04-22 16:17:47 +00:00
2013-03-13 00:34:15 +00:00
return nil
}
// 'docker info': display system-wide information.
2013-04-22 16:17:47 +00:00
func CmdInfo(args []string) error {
cmd := Subcmd("info", "", "Display system-wide information")
if err := cmd.Parse(args); err != nil {
return nil
}
2013-03-12 15:59:32 +00:00
if cmd.NArg() > 0 {
cmd.Usage()
return nil
}
body, err := call("GET", "/info")
2013-04-22 16:17:47 +00:00
if err != nil {
return err
}
var out ApiInfo
2013-04-22 16:17:47 +00:00
err = json.Unmarshal(body, &out)
if err != nil {
return err
}
fmt.Printf("containers: %d\nversion: %s\nimages: %d\n", out.Containers, out.Version, out.Images)
if out.Debug {
fmt.Println("debug mode enabled")
fmt.Printf("fds: %d\ngoroutines: %d\n", out.NFd, out.NGoroutines)
}
return nil
}
2013-04-22 16:17:47 +00:00
func CmdStop(args []string) error {
cmd := Subcmd("stop", "CONTAINER [CONTAINER...]", "Stop a running container")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() < 1 {
cmd.Usage()
return nil
}
2013-04-22 16:17:47 +00:00
for _, name := range args {
_, err := call("POST", "/containers/"+name+"/stop")
2013-04-22 16:17:47 +00:00
if err != nil {
fmt.Printf("%s", err)
} else {
2013-04-22 16:17:47 +00:00
fmt.Println(name)
}
}
return nil
}
2013-04-22 16:17:47 +00:00
func CmdRestart(args []string) error {
cmd := Subcmd("restart", "CONTAINER [CONTAINER...]", "Restart a running container")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() < 1 {
cmd.Usage()
return nil
}
2013-04-22 16:17:47 +00:00
for _, name := range args {
_, err := call("POST", "/containers/"+name+"/restart")
2013-04-22 16:17:47 +00:00
if err != nil {
fmt.Printf("%s", err)
} else {
2013-04-22 16:17:47 +00:00
fmt.Println(name)
}
}
return nil
}
2013-04-22 16:17:47 +00:00
func CmdStart(args []string) error {
cmd := Subcmd("start", "CONTAINER [CONTAINER...]", "Restart a stopped container")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() < 1 {
cmd.Usage()
return nil
}
2013-04-22 16:17:47 +00:00
for _, name := range args {
_, err := call("POST", "/containers/"+name+"/start")
2013-04-22 16:17:47 +00:00
if err != nil {
fmt.Printf("%s", err)
} else {
2013-04-22 16:17:47 +00:00
fmt.Println(name)
}
}
return nil
}
func CmdInspect(args []string) error {
cmd := Subcmd("inspect", "CONTAINER|IMAGE", "Return low-level information on a container/image")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() != 1 {
cmd.Usage()
return nil
}
2013-04-24 16:50:26 +00:00
obj, err := call("GET", "/containers/"+cmd.Arg(0))
if err != nil {
obj, err = call("GET", "/images/"+cmd.Arg(0))
if err != nil {
return err
}
}
2013-04-24 16:50:26 +00:00
fmt.Printf("%s\n", obj)
return nil
}
func CmdPort(args []string) error {
cmd := Subcmd("port", "CONTAINER PRIVATE_PORT", "Lookup the public-facing port which is NAT-ed to PRIVATE_PORT")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() != 2 {
cmd.Usage()
return nil
}
v := url.Values{}
v.Set("port", cmd.Arg(1))
body, err := call("GET", "/containers/"+cmd.Arg(0)+"/port?"+v.Encode())
if err != nil {
return err
}
var out ApiPort
err = json.Unmarshal(body, &out)
if err != nil {
return err
}
fmt.Println(out.Port)
return nil
}
2013-04-11 16:46:47 +00:00
// 'docker rmi IMAGE' removes all images with the name IMAGE
2013-04-22 16:17:47 +00:00
func CmdRmi(args []string) error {
cmd := Subcmd("rmi", "IMAGE [IMAGE...]", "Remove an image")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() < 1 {
2013-03-13 18:14:37 +00:00
cmd.Usage()
return nil
}
2013-04-22 16:17:47 +00:00
for _, name := range args {
_, err := call("DELETE", "/images/"+name)
if err != nil {
2013-04-22 16:17:47 +00:00
fmt.Printf("%s", err)
} else {
fmt.Println(name)
2013-03-13 18:14:37 +00:00
}
}
return nil
}
2013-04-22 16:17:47 +00:00
func CmdHistory(args []string) error {
cmd := Subcmd("history", "IMAGE", "Show the history of an image")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() != 1 {
cmd.Usage()
return nil
}
2013-04-22 16:17:47 +00:00
body, err := call("GET", "/images/"+cmd.Arg(0)+"/history")
2013-04-22 16:17:47 +00:00
if err != nil {
return err
}
var outs []ApiHistory
2013-04-22 16:17:47 +00:00
err = json.Unmarshal(body, &outs)
if err != nil {
return err
}
2013-04-22 16:17:47 +00:00
w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
fmt.Fprintln(w, "ID\tCREATED\tCREATED BY")
2013-04-22 16:17:47 +00:00
for _, out := range outs {
fmt.Fprintf(w, "%s\t%s\t%s\n", out.Id, out.Created, out.CreatedBy)
}
w.Flush()
return nil
}
2013-04-22 16:17:47 +00:00
func CmdRm(args []string) error {
cmd := Subcmd("rm", "CONTAINER [CONTAINER...]", "Remove a container")
if err := cmd.Parse(args); err != nil {
return nil
}
2013-04-11 14:27:01 +00:00
if cmd.NArg() < 1 {
cmd.Usage()
return nil
}
2013-04-22 16:17:47 +00:00
for _, name := range args {
_, err := call("DELETE", "/containers/"+name)
if err != nil {
fmt.Printf("%s", err)
} else {
fmt.Println(name)
}
}
return nil
}
// 'docker kill NAME' kills a running container
2013-04-22 16:17:47 +00:00
func CmdKill(args []string) error {
cmd := Subcmd("kill", "CONTAINER [CONTAINER...]", "Kill a running container")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() < 1 {
cmd.Usage()
return nil
}
2013-04-22 16:17:47 +00:00
for _, name := range args {
_, err := call("POST", "/containers/"+name+"/kill")
if err != nil {
fmt.Printf("%s", err)
} else {
fmt.Println(name)
}
}
return nil
}
2013-04-22 16:17:47 +00:00
/*
func (srv *Server) CmdImport(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
stdout.Flush()
cmd := rcli.Subcmd(stdout, "import", "URL|- [REPOSITORY [TAG]]", "Create a new filesystem image from the contents of a tarball")
var archive io.Reader
var resp *http.Response
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() < 1 {
cmd.Usage()
return nil
}
src := cmd.Arg(0)
if src == "-" {
archive = stdin
} else {
u, err := url.Parse(src)
if err != nil {
return err
}
if u.Scheme == "" {
u.Scheme = "http"
u.Host = src
u.Path = ""
}
fmt.Fprintln(stdout, "Downloading from", u)
// Download with curl (pretty progress bar)
// If curl is not available, fallback to http.Get()
resp, err = Download(u.String(), stdout)
if err != nil {
return err
}
archive = ProgressReader(resp.Body, int(resp.ContentLength), stdout)
}
img, err := srv.runtime.graph.Create(archive, nil, "Imported from "+src)
if err != nil {
return err
}
// Optionally register the image at REPO/TAG
if repository := cmd.Arg(1); repository != "" {
tag := cmd.Arg(2) // Repository will handle an empty tag properly
if err := srv.runtime.repositories.Set(repository, tag, img.Id, true); err != nil {
return err
}
}
fmt.Fprintln(stdout, img.ShortId())
return nil
}
2013-04-22 16:17:47 +00:00
*/
2013-04-22 16:17:47 +00:00
/*
func (srv *Server) CmdPush(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
cmd := rcli.Subcmd(stdout, "push", "NAME", "Push an image or a repository to the registry")
if err := cmd.Parse(args); err != nil {
return nil
}
2013-03-22 13:38:54 +00:00
local := cmd.Arg(0)
if local == "" {
cmd.Usage()
return nil
}
2013-03-22 13:38:54 +00:00
// If the login failed, abort
2013-03-23 02:04:12 +00:00
if srv.runtime.authConfig == nil || srv.runtime.authConfig.Username == "" {
if err := srv.CmdLogin(stdin, stdout, args...); err != nil {
return err
}
if srv.runtime.authConfig == nil || srv.runtime.authConfig.Username == "" {
return fmt.Errorf("Please login prior to push. ('docker login')")
}
2013-03-22 10:43:57 +00:00
}
var remote string
tmp := strings.SplitN(local, "/", 2)
if len(tmp) == 1 {
return fmt.Errorf(
"Impossible to push a \"root\" repository. Please rename your repository in <user>/<repo> (ex: %s/%s)",
srv.runtime.authConfig.Username, local)
2013-03-22 13:38:54 +00:00
} else {
remote = local
2013-03-22 13:38:54 +00:00
}
2013-03-22 20:10:17 +00:00
Debugf("Pushing [%s] to [%s]\n", local, remote)
2013-03-22 08:25:27 +00:00
// Try to get the image
// FIXME: Handle lookup
// FIXME: Also push the tags in case of ./docker push myrepo:mytag
// img, err := srv.runtime.LookupImage(cmd.Arg(0))
2013-03-22 13:38:54 +00:00
img, err := srv.runtime.graph.Get(local)
if err != nil {
2013-03-22 20:10:17 +00:00
Debugf("The push refers to a repository [%s] (len: %d)\n", local, len(srv.runtime.repositories.Repositories[local]))
2013-03-22 08:25:27 +00:00
// If it fails, try to get the repository
2013-03-22 13:38:54 +00:00
if localRepo, exists := srv.runtime.repositories.Repositories[local]; exists {
2013-03-22 20:21:44 +00:00
if err := srv.runtime.graph.PushRepository(stdout, remote, localRepo, srv.runtime.authConfig); err != nil {
2013-03-22 08:25:27 +00:00
return err
}
return nil
2013-03-22 08:25:27 +00:00
}
2013-04-03 09:08:32 +00:00
return err
}
2013-03-22 20:21:44 +00:00
err = srv.runtime.graph.PushImage(stdout, img, srv.runtime.authConfig)
if err != nil {
return err
}
return nil
}
2013-04-22 16:17:47 +00:00
*/
func CmdPull(args []string) error {
cmd := Subcmd("pull", "NAME", "Pull an image or a repository from the registry")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() != 1 {
cmd.Usage()
return nil
}
2013-03-22 08:25:27 +00:00
if err := callStream("POST", "/images/"+cmd.Arg(0)+"/pull", nil, false); err != nil {
return err
2013-03-22 08:25:27 +00:00
}
return nil
}
2013-04-22 16:17:47 +00:00
func CmdImages(args []string) error {
cmd := Subcmd("images", "[OPTIONS] [NAME]", "List images")
quiet := cmd.Bool("q", false, "only show numeric IDs")
2013-04-22 16:17:47 +00:00
all := cmd.Bool("a", false, "show all images")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() > 1 {
cmd.Usage()
return nil
}
2013-04-22 16:17:47 +00:00
v := url.Values{}
if cmd.NArg() == 1 {
2013-04-22 16:17:47 +00:00
v.Set("filter", cmd.Arg(0))
}
2013-04-22 16:17:47 +00:00
if *quiet {
2013-04-26 13:08:33 +00:00
v.Set("quiet", "1")
}
2013-04-22 16:17:47 +00:00
if *all {
2013-04-26 13:08:33 +00:00
v.Set("all", "1")
}
2013-04-22 16:17:47 +00:00
body, err := call("GET", "/images?"+v.Encode())
if err != nil {
return err
}
2013-04-22 16:17:47 +00:00
var outs []ApiImages
2013-04-22 16:17:47 +00:00
err = json.Unmarshal(body, &outs)
if err != nil {
return err
}
2013-04-22 16:17:47 +00:00
w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
if !*quiet {
fmt.Fprintln(w, "REPOSITORY\tTAG\tID\tCREATED")
}
for _, out := range outs {
if !*quiet {
fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", out.Repository, out.Tag, out.Id, out.Created)
} else {
fmt.Fprintln(w, out.Id)
}
}
2013-04-22 16:17:47 +00:00
if !*quiet {
w.Flush()
}
return nil
}
2013-04-22 16:17:47 +00:00
func CmdPs(args []string) error {
cmd := Subcmd("ps", "[OPTIONS]", "List containers")
quiet := cmd.Bool("q", false, "Only display numeric IDs")
2013-04-22 16:17:47 +00:00
all := cmd.Bool("a", false, "Show all containers. Only running containers are shown by default.")
noTrunc := cmd.Bool("notrunc", false, "Don't truncate output")
nLatest := cmd.Bool("l", false, "Show only the latest created container, include non-running ones.")
last := cmd.Int("n", -1, "Show n last created containers, include non-running ones.")
if err := cmd.Parse(args); err != nil {
return nil
}
2013-04-22 16:17:47 +00:00
v := url.Values{}
if *last == -1 && *nLatest {
*last = 1
}
if *quiet {
2013-04-26 13:08:33 +00:00
v.Set("quiet", "1")
2013-04-10 17:30:57 +00:00
}
2013-04-22 16:17:47 +00:00
if *all {
2013-04-26 13:08:33 +00:00
v.Set("all", "1")
2013-04-22 16:17:47 +00:00
}
if *noTrunc {
2013-04-26 13:08:33 +00:00
v.Set("notrunc", "1")
2013-04-22 16:17:47 +00:00
}
if *last != -1 {
v.Set("n", strconv.Itoa(*last))
}
body, err := call("GET", "/containers?"+v.Encode())
2013-04-22 16:17:47 +00:00
if err != nil {
return err
}
var outs []ApiContainers
2013-04-22 16:17:47 +00:00
err = json.Unmarshal(body, &outs)
if err != nil {
return err
}
w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
2013-02-14 01:28:13 +00:00
if !*quiet {
2013-04-22 16:17:47 +00:00
fmt.Fprintln(w, "ID\tIMAGE\tCOMMAND\tCREATED\tSTATUS")
}
2013-04-22 16:17:47 +00:00
for _, out := range outs {
if !*quiet {
fmt.Fprintf(w, "%s\t%s\t%s\t%s\t%s\n", out.Id, out.Image, out.Command, out.Status, out.Created)
} else {
2013-04-22 16:17:47 +00:00
fmt.Fprintln(w, out.Id)
}
}
2013-04-22 16:17:47 +00:00
2013-02-14 01:28:13 +00:00
if !*quiet {
w.Flush()
}
return nil
}
2013-04-24 14:06:03 +00:00
func CmdCommit(args []string) error {
cmd := Subcmd("commit", "[OPTIONS] CONTAINER [REPOSITORY [TAG]]", "Create a new image from a container's changes")
flComment := cmd.String("m", "", "Commit message")
if err := cmd.Parse(args); err != nil {
return nil
}
2013-04-24 14:06:03 +00:00
name, repository, tag := cmd.Arg(0), cmd.Arg(1), cmd.Arg(2)
if name == "" {
cmd.Usage()
return nil
}
2013-04-24 14:06:03 +00:00
v := url.Values{}
v.Set("repo", repository)
v.Set("tag", tag)
v.Set("comment", *flComment)
body, err := call("POST", "/containers/"+name+"/commit?"+v.Encode())
if err != nil {
return err
}
2013-04-24 14:06:03 +00:00
var out ApiCommit
err = json.Unmarshal(body, &out)
if err != nil {
return err
}
fmt.Println(out.Id)
return nil
}
2013-04-24 14:32:51 +00:00
func CmdExport(args []string) error {
cmd := Subcmd("export", "CONTAINER", "Export the contents of a filesystem as a tar archive")
if err := cmd.Parse(args); err != nil {
return nil
}
2013-04-24 14:32:51 +00:00
if cmd.NArg() != 1 {
cmd.Usage()
return nil
}
2013-04-24 14:32:51 +00:00
if err := callStream("GET", "/containers/"+cmd.Arg(0)+"/export", nil, false); err != nil {
return err
}
return nil
}
func CmdDiff(args []string) error {
cmd := Subcmd("diff", "CONTAINER", "Inspect changes on a container's filesystem")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() != 1 {
cmd.Usage()
return nil
}
body, err := call("GET", "/containers/"+cmd.Arg(0)+"/changes")
if err != nil {
return err
}
var changes []string
err = json.Unmarshal(body, &changes)
if err != nil {
return err
}
for _, change := range changes {
fmt.Println(change)
}
return nil
}
2013-04-22 16:17:47 +00:00
func CmdLogs(args []string) error {
cmd := Subcmd("logs", "CONTAINER", "Fetch the logs of a container")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() != 1 {
cmd.Usage()
return nil
}
body, err := call("GET", "/containers/"+cmd.Arg(0)+"/logs")
2013-04-22 16:17:47 +00:00
if err != nil {
return err
}
2013-04-22 16:17:47 +00:00
var out ApiLogs
2013-04-22 16:17:47 +00:00
err = json.Unmarshal(body, &out)
if err != nil {
return err
}
fmt.Fprintln(os.Stdout, out.Stdout)
fmt.Fprintln(os.Stderr, out.Stderr)
return nil
}
2013-04-26 13:08:33 +00:00
func CmdAttach(args []string) error {
cmd := Subcmd("attach", "CONTAINER", "Attach to a running container")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() != 1 {
cmd.Usage()
return nil
}
body, err := call("GET", "/containers/"+cmd.Arg(0))
if err != nil {
return err
}
var container Container
err = json.Unmarshal(body, &container)
if err != nil {
return err
}
if err := callStream("POST", "/containers/"+cmd.Arg(0)+"/attach", nil, container.Config.Tty); err != nil {
2013-04-26 13:08:33 +00:00
return err
}
2013-04-26 13:08:33 +00:00
return nil
}
2013-04-26 13:08:33 +00:00
2013-04-22 16:17:47 +00:00
/*
2013-02-28 19:52:22 +00:00
// Ports type - Used to parse multiple -p flags
type ports []int
func (p *ports) String() string {
return fmt.Sprint(*p)
}
func (p *ports) Set(value string) error {
port, err := strconv.Atoi(value)
if err != nil {
return fmt.Errorf("Invalid port: %v", value)
}
*p = append(*p, port)
return nil
}
2013-04-22 16:17:47 +00:00
*/
2013-02-28 19:52:22 +00:00
// ListOpts type
type ListOpts []string
func (opts *ListOpts) String() string {
return fmt.Sprint(*opts)
}
func (opts *ListOpts) Set(value string) error {
*opts = append(*opts, value)
return nil
}
// AttachOpts stores arguments to 'docker run -a', eg. which streams to attach to
type AttachOpts map[string]bool
func NewAttachOpts() AttachOpts {
return make(AttachOpts)
}
func (opts AttachOpts) String() string {
// Cast to underlying map type to avoid infinite recursion
return fmt.Sprintf("%v", map[string]bool(opts))
}
func (opts AttachOpts) Set(val string) error {
if val != "stdin" && val != "stdout" && val != "stderr" {
return fmt.Errorf("Unsupported stream name: %s", val)
}
opts[val] = true
return nil
}
func (opts AttachOpts) Get(val string) bool {
if res, exists := opts[val]; exists {
return res
}
return false
}
func CmdTag(args []string) error {
cmd := Subcmd("tag", "[OPTIONS] IMAGE REPOSITORY [TAG]", "Tag an image into a repository")
force := cmd.Bool("f", false, "Force")
if err := cmd.Parse(args); err != nil {
return nil
}
if cmd.NArg() != 2 && cmd.NArg() != 3 {
cmd.Usage()
return nil
}
v := url.Values{}
v.Set("repo", cmd.Arg(1))
if cmd.NArg() == 3 {
v.Set("tag", cmd.Arg(2))
}
if *force {
2013-04-26 13:08:33 +00:00
v.Set("force", "1")
}
if err := callStream("POST", "/images/"+cmd.Arg(0)+"/tag?"+v.Encode(), nil, false); err != nil {
return err
}
return nil
}
func CmdRun(args []string) error {
config, cmd, err := ParseRun(args)
if err != nil {
return err
}
if config.Image == "" {
cmd.Usage()
return nil
}
if len(config.Cmd) == 0 {
cmd.Usage()
return nil
}
2013-03-26 10:05:10 +00:00
if err := callStream("POST", "/containers", *config, config.Tty); err != nil {
return err
}
2013-04-02 19:21:35 +00:00
return nil
}
2013-04-22 16:17:47 +00:00
func call(method, path string) ([]byte, error) {
req, err := http.NewRequest(method, "http://0.0.0.0:4243"+path, nil)
2013-04-22 16:17:47 +00:00
if err != nil {
return nil, err
}
2013-04-24 14:06:03 +00:00
if method == "POST" {
req.Header.Set("Content-Type", "plain/text")
}
2013-04-22 16:17:47 +00:00
resp, err := http.DefaultClient.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
if resp.StatusCode != 200 {
return nil, fmt.Errorf("error: %s", body)
}
return body, nil
}
2013-04-29 13:12:18 +00:00
func callStream(method, path string, data interface{}, setRawTerminal bool) error {
var body io.Reader
if data != nil {
buf, err := json.Marshal(data)
if err != nil {
return err
}
body = bytes.NewBuffer(buf)
2013-04-22 16:17:47 +00:00
}
req, err := http.NewRequest(method, path, body)
2013-04-22 16:17:47 +00:00
if err != nil {
return err
2013-04-22 16:17:47 +00:00
}
if data != nil {
req.Header.Set("Content-Type", "application/json")
2013-04-22 16:17:47 +00:00
}
dial, err := net.Dial("tcp", "0.0.0.0:4243")
2013-04-22 16:17:47 +00:00
if err != nil {
return err
2013-04-22 16:17:47 +00:00
}
clientconn := httputil.NewClientConn(dial, nil)
2013-04-24 16:50:26 +00:00
clientconn.Do(req)
defer clientconn.Close()
rwc, _ := clientconn.Hijack()
defer rwc.Close()
2013-04-29 13:12:18 +00:00
if setRawTerminal && term.IsTerminal(int(os.Stdin.Fd())) && os.Getenv("NORAW") == "" {
if oldState, err := SetRawTerminal(); err != nil {
return err
} else {
defer RestoreTerminal(oldState)
}
}
receiveStdout := Go(func() error {
_, err := io.Copy(os.Stdout, rwc)
return err
})
sendStdin := Go(func() error {
_, err := io.Copy(rwc, os.Stdin)
rwc.Close()
return err
})
if err := <-receiveStdout; err != nil {
return err
2013-04-22 16:17:47 +00:00
}
2013-04-29 13:12:18 +00:00
if !term.IsTerminal(int(os.Stdin.Fd())) {
if err := <-sendStdin; err != nil {
return err
}
}
return nil
2013-04-22 16:17:47 +00:00
}
2013-04-22 16:17:47 +00:00
func Subcmd(name, signature, description string) *flag.FlagSet {
flags := flag.NewFlagSet(name, flag.ContinueOnError)
flags.Usage = func() {
fmt.Printf("\nUsage: docker %s %s\n\n%s\n\n", name, signature, description)
flags.PrintDefaults()
}
return flags
}