1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513 |
- package docker
- import (
- "bytes"
- "encoding/json"
- "flag"
- "fmt"
- "github.com/dotcloud/docker/auth"
- "github.com/dotcloud/docker/term"
- "github.com/dotcloud/docker/utils"
- "io"
- "io/ioutil"
- "mime/multipart"
- "net"
- "net/http"
- "net/http/httputil"
- "net/url"
- "os"
- "os/signal"
- "path"
- "path/filepath"
- "reflect"
- "regexp"
- "strconv"
- "strings"
- "syscall"
- "text/tabwriter"
- "time"
- "unicode"
- )
- const VERSION = "0.4.4"
- var (
- GITCOMMIT string
- )
- func (cli *DockerCli) getMethod(name string) (reflect.Method, bool) {
- methodName := "Cmd" + strings.ToUpper(name[:1]) + strings.ToLower(name[1:])
- return reflect.TypeOf(cli).MethodByName(methodName)
- }
- func ParseCommands(proto, addr string, args ...string) error {
- cli := NewDockerCli(proto, addr)
- if len(args) > 0 {
- method, exists := cli.getMethod(args[0])
- if !exists {
- fmt.Println("Error: Command not found:", args[0])
- return cli.CmdHelp(args[1:]...)
- }
- ret := method.Func.CallSlice([]reflect.Value{
- reflect.ValueOf(cli),
- reflect.ValueOf(args[1:]),
- })[0].Interface()
- if ret == nil {
- return nil
- }
- return ret.(error)
- }
- return cli.CmdHelp(args...)
- }
- func (cli *DockerCli) CmdHelp(args ...string) error {
- if len(args) > 0 {
- method, exists := cli.getMethod(args[0])
- if !exists {
- fmt.Println("Error: Command not found:", args[0])
- } else {
- method.Func.CallSlice([]reflect.Value{
- reflect.ValueOf(cli),
- reflect.ValueOf([]string{"--help"}),
- })[0].Interface()
- return nil
- }
- }
- help := fmt.Sprintf("Usage: docker [OPTIONS] COMMAND [arg...]\n -H=[tcp://%s:%d]: tcp://host:port to bind/connect to or unix://path/to/socker to use\n\nA self-sufficient runtime for linux containers.\n\nCommands:\n", DEFAULTHTTPHOST, DEFAULTHTTPPORT)
- for _, command := range [][2]string{
- {"attach", "Attach to a running container"},
- {"build", "Build a container from a Dockerfile"},
- {"commit", "Create a new image from a container's changes"},
- {"diff", "Inspect changes on a container's filesystem"},
- {"export", "Stream the contents of a container as a tar archive"},
- {"history", "Show the history of an image"},
- {"images", "List images"},
- {"import", "Create a new filesystem image from the contents of a tarball"},
- {"info", "Display system-wide information"},
- {"insert", "Insert a file in an image"},
- {"inspect", "Return low-level information on a container"},
- {"kill", "Kill a running container"},
- {"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"},
- {"push", "Push an image or a repository to the docker registry server"},
- {"restart", "Restart a running container"},
- {"rm", "Remove a container"},
- {"rmi", "Remove an image"},
- {"run", "Run a command in a new container"},
- {"search", "Search for an image in the docker index"},
- {"start", "Start a stopped container"},
- {"stop", "Stop a running container"},
- {"tag", "Tag an image into a repository"},
- {"version", "Show the docker version information"},
- {"wait", "Block until a container stops, then print its exit code"},
- } {
- help += fmt.Sprintf(" %-10.10s%s\n", command[0], command[1])
- }
- fmt.Println(help)
- return nil
- }
- func (cli *DockerCli) CmdInsert(args ...string) error {
- cmd := Subcmd("insert", "IMAGE URL PATH", "Insert a file from URL in the IMAGE at PATH")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 3 {
- cmd.Usage()
- return nil
- }
- v := url.Values{}
- v.Set("url", cmd.Arg(1))
- v.Set("path", cmd.Arg(2))
- if err := cli.stream("POST", "/images/"+cmd.Arg(0)+"/insert?"+v.Encode(), nil, os.Stdout); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdBuild(args ...string) error {
- cmd := Subcmd("build", "[OPTIONS] PATH | -", "Build a new container image from the source code at PATH")
- tag := cmd.String("t", "", "Tag to be applied to the resulting image in case of success")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 1 {
- cmd.Usage()
- return nil
- }
- var (
- multipartBody io.Reader
- file io.ReadCloser
- contextPath string
- )
- // Init the needed component for the Multipart
- buff := bytes.NewBuffer([]byte{})
- multipartBody = buff
- w := multipart.NewWriter(buff)
- boundary := strings.NewReader("\r\n--" + w.Boundary() + "--\r\n")
- compression := Bzip2
- if cmd.Arg(0) == "-" {
- file = os.Stdin
- } else {
- // Send Dockerfile from arg/Dockerfile (deprecate later)
- f, err := os.Open(path.Join(cmd.Arg(0), "Dockerfile"))
- if err != nil {
- return err
- }
- file = f
- // Send context from arg
- // Create a FormFile multipart for the context if needed
- // FIXME: Use NewTempArchive in order to have the size and avoid too much memory usage?
- context, err := Tar(cmd.Arg(0), compression)
- if err != nil {
- return err
- }
- // NOTE: Do this in case '.' or '..' is input
- absPath, err := filepath.Abs(cmd.Arg(0))
- if err != nil {
- return err
- }
- wField, err := w.CreateFormFile("Context", filepath.Base(absPath)+"."+compression.Extension())
- if err != nil {
- return err
- }
- // FIXME: Find a way to have a progressbar for the upload too
- sf := utils.NewStreamFormatter(false)
- io.Copy(wField, utils.ProgressReader(ioutil.NopCloser(context), -1, os.Stdout, sf.FormatProgress("Caching Context", "%v/%v (%v)"), sf))
- multipartBody = io.MultiReader(multipartBody, boundary)
- }
- // Create a FormFile multipart for the Dockerfile
- wField, err := w.CreateFormFile("Dockerfile", "Dockerfile")
- if err != nil {
- return err
- }
- io.Copy(wField, file)
- multipartBody = io.MultiReader(multipartBody, boundary)
- v := &url.Values{}
- v.Set("t", *tag)
- // Send the multipart request with correct content-type
- req, err := http.NewRequest("POST", fmt.Sprintf("/v%g/build?%s", APIVERSION, v.Encode()), multipartBody)
- if err != nil {
- return err
- }
- req.Header.Set("Content-Type", w.FormDataContentType())
- if contextPath != "" {
- req.Header.Set("X-Docker-Context-Compression", compression.Flag())
- fmt.Println("Uploading Context...")
- }
- dial, err := net.Dial(cli.proto, cli.addr)
- if err != nil {
- return err
- }
- clientconn := httputil.NewClientConn(dial, nil)
- resp, err := clientconn.Do(req)
- defer clientconn.Close()
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- // Check for errors
- if resp.StatusCode < 200 || resp.StatusCode >= 400 {
- body, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- return err
- }
- if len(body) == 0 {
- return fmt.Errorf("Error: %s", http.StatusText(resp.StatusCode))
- }
- return fmt.Errorf("Error: %s", body)
- }
- // Output the result
- if _, err := io.Copy(os.Stdout, resp.Body); err != nil {
- return err
- }
- return nil
- }
- // 'docker login': login / register a user to registry service.
- func (cli *DockerCli) CmdLogin(args ...string) error {
- 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)
- }
- oldState, err := term.SetRawTerminal()
- if err != nil {
- return err
- }
- defer term.RestoreTerminal(oldState)
- cmd := Subcmd("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.Print("Username (", cli.authConfig.Username, "): ")
- username = readAndEchoString(os.Stdin, os.Stdout)
- if username == "" {
- username = cli.authConfig.Username
- }
- if username != cli.authConfig.Username {
- fmt.Print("Password: ")
- password = readString(os.Stdin, os.Stdout)
- if password == "" {
- return fmt.Errorf("Error : Password Required")
- }
- fmt.Print("Email (", cli.authConfig.Email, "): ")
- email = readAndEchoString(os.Stdin, os.Stdout)
- if email == "" {
- email = cli.authConfig.Email
- }
- } else {
- email = cli.authConfig.Email
- }
- term.RestoreTerminal(oldState)
- cli.authConfig.Username = username
- cli.authConfig.Password = password
- cli.authConfig.Email = email
- body, _, err := cli.call("POST", "/auth", cli.authConfig)
- if err != nil {
- return err
- }
- var out2 APIAuth
- err = json.Unmarshal(body, &out2)
- if err != nil {
- auth.LoadConfig(os.Getenv("HOME"))
- return err
- }
- auth.SaveConfig(cli.authConfig)
- if out2.Status != "" {
- fmt.Print(out2.Status)
- }
- return nil
- }
- // 'docker wait': block until a container stops
- func (cli *DockerCli) 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 := cli.call("POST", "/containers/"+name+"/wait", nil)
- 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
- }
- // 'docker version': show version information
- func (cli *DockerCli) 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 := cli.call("GET", "/version", nil)
- if err != nil {
- return err
- }
- var out APIVersion
- err = json.Unmarshal(body, &out)
- if err != nil {
- utils.Debugf("Error unmarshal: body: %s, err: %s\n", body, err)
- return err
- }
- fmt.Println("Client version:", VERSION)
- fmt.Println("Server version:", out.Version)
- if out.GitCommit != "" {
- fmt.Println("Git commit:", out.GitCommit)
- }
- if out.GoVersion != "" {
- fmt.Println("Go version:", out.GoVersion)
- }
- return nil
- }
- // 'docker info': display system-wide information.
- func (cli *DockerCli) CmdInfo(args ...string) error {
- cmd := Subcmd("info", "", "Display system-wide information")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() > 0 {
- cmd.Usage()
- return nil
- }
- body, _, err := cli.call("GET", "/info", nil)
- if err != nil {
- return err
- }
- var out APIInfo
- if err := json.Unmarshal(body, &out); err != nil {
- return err
- }
- fmt.Printf("Containers: %d\n", out.Containers)
- fmt.Printf("Images: %d\n", out.Images)
- if out.Debug || os.Getenv("DEBUG") != "" {
- fmt.Printf("Debug mode (server): %v\n", out.Debug)
- fmt.Printf("Debug mode (client): %v\n", os.Getenv("DEBUG") != "")
- fmt.Printf("Fds: %d\n", out.NFd)
- fmt.Printf("Goroutines: %d\n", out.NGoroutines)
- }
- if !out.MemoryLimit {
- fmt.Println("WARNING: No memory limit support")
- }
- if !out.SwapLimit {
- fmt.Println("WARNING: No swap limit support")
- }
- return nil
- }
- func (cli *DockerCli) CmdStop(args ...string) error {
- cmd := Subcmd("stop", "[OPTIONS] CONTAINER [CONTAINER...]", "Stop a running container")
- nSeconds := cmd.Int("t", 10, "wait t seconds before killing the container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- v := url.Values{}
- v.Set("t", strconv.Itoa(*nSeconds))
- for _, name := range cmd.Args() {
- _, _, err := cli.call("POST", "/containers/"+name+"/stop?"+v.Encode(), nil)
- if err != nil {
- fmt.Fprintf(os.Stderr, "%s", err)
- } else {
- fmt.Println(name)
- }
- }
- return nil
- }
- func (cli *DockerCli) CmdRestart(args ...string) error {
- cmd := Subcmd("restart", "[OPTIONS] CONTAINER [CONTAINER...]", "Restart a running container")
- nSeconds := cmd.Int("t", 10, "wait t seconds before killing the container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- v := url.Values{}
- v.Set("t", strconv.Itoa(*nSeconds))
- for _, name := range cmd.Args() {
- _, _, err := cli.call("POST", "/containers/"+name+"/restart?"+v.Encode(), nil)
- if err != nil {
- fmt.Fprintf(os.Stderr, "%s", err)
- } else {
- fmt.Println(name)
- }
- }
- return nil
- }
- func (cli *DockerCli) 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
- }
- for _, name := range args {
- _, _, err := cli.call("POST", "/containers/"+name+"/start", nil)
- if err != nil {
- fmt.Fprintf(os.Stderr, "%s", err)
- } else {
- fmt.Println(name)
- }
- }
- return nil
- }
- func (cli *DockerCli) CmdInspect(args ...string) error {
- cmd := Subcmd("inspect", "CONTAINER|IMAGE [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
- }
- fmt.Printf("[")
- for i, name := range args {
- if i > 0 {
- fmt.Printf(",")
- }
- obj, _, err := cli.call("GET", "/containers/"+name+"/json", nil)
- if err != nil {
- obj, _, err = cli.call("GET", "/images/"+name+"/json", nil)
- if err != nil {
- fmt.Fprintf(os.Stderr, "%s", err)
- continue
- }
- }
- indented := new(bytes.Buffer)
- if err = json.Indent(indented, obj, "", " "); err != nil {
- fmt.Fprintf(os.Stderr, "%s", err)
- continue
- }
- if _, err := io.Copy(os.Stdout, indented); err != nil {
- fmt.Fprintf(os.Stderr, "%s", err)
- }
- }
- fmt.Printf("]")
- return nil
- }
- func (cli *DockerCli) 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
- }
- body, _, err := cli.call("GET", "/containers/"+cmd.Arg(0)+"/json", nil)
- if err != nil {
- return err
- }
- var out Container
- err = json.Unmarshal(body, &out)
- if err != nil {
- return err
- }
- if frontend, exists := out.NetworkSettings.PortMapping[cmd.Arg(1)]; exists {
- fmt.Println(frontend)
- } else {
- return fmt.Errorf("Error: No private port '%s' allocated on %s", cmd.Arg(1), cmd.Arg(0))
- }
- return nil
- }
- // 'docker rmi IMAGE' removes all images with the name IMAGE
- func (cli *DockerCli) 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 {
- cmd.Usage()
- return nil
- }
- for _, name := range cmd.Args() {
- body, _, err := cli.call("DELETE", "/images/"+name, nil)
- if err != nil {
- fmt.Fprintf(os.Stderr, "%s", err)
- } else {
- var outs []APIRmi
- err = json.Unmarshal(body, &outs)
- if err != nil {
- return err
- }
- for _, out := range outs {
- if out.Deleted != "" {
- fmt.Println("Deleted:", out.Deleted)
- } else {
- fmt.Println("Untagged:", out.Untagged)
- }
- }
- }
- }
- return nil
- }
- func (cli *DockerCli) 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
- }
- body, _, err := cli.call("GET", "/images/"+cmd.Arg(0)+"/history", nil)
- if err != nil {
- return err
- }
- var outs []APIHistory
- err = json.Unmarshal(body, &outs)
- if err != nil {
- return err
- }
- w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
- fmt.Fprintln(w, "ID\tCREATED\tCREATED BY")
- for _, out := range outs {
- if out.Tags != nil {
- out.ID = out.Tags[0]
- }
- fmt.Fprintf(w, "%s \t%s ago\t%s\n", out.ID, utils.HumanDuration(time.Now().Sub(time.Unix(out.Created, 0))), out.CreatedBy)
- }
- w.Flush()
- return nil
- }
- func (cli *DockerCli) CmdRm(args ...string) error {
- cmd := Subcmd("rm", "[OPTIONS] CONTAINER [CONTAINER...]", "Remove a container")
- v := cmd.Bool("v", false, "Remove the volumes associated to the container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- val := url.Values{}
- if *v {
- val.Set("v", "1")
- }
- for _, name := range cmd.Args() {
- _, _, err := cli.call("DELETE", "/containers/"+name+"?"+val.Encode(), nil)
- if err != nil {
- fmt.Printf("%s", err)
- } else {
- fmt.Println(name)
- }
- }
- return nil
- }
- // 'docker kill NAME' kills a running container
- func (cli *DockerCli) 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
- }
- for _, name := range args {
- _, _, err := cli.call("POST", "/containers/"+name+"/kill", nil)
- if err != nil {
- fmt.Printf("%s", err)
- } else {
- fmt.Println(name)
- }
- }
- return nil
- }
- func (cli *DockerCli) CmdImport(args ...string) error {
- cmd := Subcmd("import", "URL|- [REPOSITORY [TAG]]", "Create a new filesystem image from the contents of a tarball")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- src, repository, tag := cmd.Arg(0), cmd.Arg(1), cmd.Arg(2)
- v := url.Values{}
- v.Set("repo", repository)
- v.Set("tag", tag)
- v.Set("fromSrc", src)
- err := cli.stream("POST", "/images/create?"+v.Encode(), os.Stdin, os.Stdout)
- if err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdPush(args ...string) error {
- cmd := Subcmd("push", "[OPTION] NAME", "Push an image or a repository to the registry")
- registry := cmd.String("registry", "", "Registry host to push the image to")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- name := cmd.Arg(0)
- if name == "" {
- cmd.Usage()
- return nil
- }
- if err := cli.checkIfLogged(*registry == "", "push"); err != nil {
- return err
- }
- if len(strings.SplitN(name, "/", 2)) == 1 {
- return fmt.Errorf("Impossible to push a \"root\" repository. Please rename your repository in <user>/<repo> (ex: %s/%s)", cli.authConfig.Username, name)
- }
- buf, err := json.Marshal(cli.authConfig)
- if err != nil {
- return err
- }
- nameParts := strings.SplitN(name, "/", 2)
- validNamespace := regexp.MustCompile(`^([a-z0-9_]{4,30})$`)
- if !validNamespace.MatchString(nameParts[0]) {
- return fmt.Errorf("Invalid namespace name (%s), only [a-z0-9_] are allowed, size between 4 and 30", nameParts[0])
- }
- validRepo := regexp.MustCompile(`^([a-zA-Z0-9-_.]+)$`)
- if !validRepo.MatchString(nameParts[1]) {
- return fmt.Errorf("Invalid repository name (%s), only [a-zA-Z0-9-_.] are allowed", nameParts[1])
- }
- v := url.Values{}
- v.Set("registry", *registry)
- if err := cli.stream("POST", "/images/"+name+"/push?"+v.Encode(), bytes.NewBuffer(buf), os.Stdout); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdPull(args ...string) error {
- cmd := Subcmd("pull", "NAME", "Pull an image or a repository from the registry")
- tag := cmd.String("t", "", "Download tagged image in repository")
- registry := cmd.String("registry", "", "Registry to download from. Necessary if image is pulled by ID")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 1 {
- cmd.Usage()
- return nil
- }
- remote := cmd.Arg(0)
- if strings.Contains(remote, ":") {
- remoteParts := strings.Split(remote, ":")
- tag = &remoteParts[1]
- remote = remoteParts[0]
- }
- v := url.Values{}
- v.Set("fromImage", remote)
- v.Set("tag", *tag)
- v.Set("registry", *registry)
- if err := cli.stream("POST", "/images/create?"+v.Encode(), nil, os.Stdout); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdImages(args ...string) error {
- cmd := Subcmd("images", "[OPTIONS] [NAME]", "List images")
- quiet := cmd.Bool("q", false, "only show numeric IDs")
- all := cmd.Bool("a", false, "show all images")
- noTrunc := cmd.Bool("notrunc", false, "Don't truncate output")
- flViz := cmd.Bool("viz", false, "output graph in graphviz format")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() > 1 {
- cmd.Usage()
- return nil
- }
- if *flViz {
- body, _, err := cli.call("GET", "/images/viz", false)
- if err != nil {
- return err
- }
- fmt.Printf("%s", body)
- } else {
- v := url.Values{}
- if cmd.NArg() == 1 {
- v.Set("filter", cmd.Arg(0))
- }
- if *all {
- v.Set("all", "1")
- }
- body, _, err := cli.call("GET", "/images/json?"+v.Encode(), nil)
- if err != nil {
- return err
- }
- var outs []APIImages
- err = json.Unmarshal(body, &outs)
- if err != nil {
- return err
- }
- w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
- if !*quiet {
- fmt.Fprintln(w, "REPOSITORY\tTAG\tID\tCREATED\tSIZE")
- }
- for _, out := range outs {
- if out.Repository == "" {
- out.Repository = "<none>"
- }
- if out.Tag == "" {
- out.Tag = "<none>"
- }
- if !*quiet {
- fmt.Fprintf(w, "%s\t%s\t", out.Repository, out.Tag)
- if *noTrunc {
- fmt.Fprintf(w, "%s\t", out.ID)
- } else {
- fmt.Fprintf(w, "%s\t", utils.TruncateID(out.ID))
- }
- fmt.Fprintf(w, "%s ago\t", utils.HumanDuration(time.Now().Sub(time.Unix(out.Created, 0))))
- if out.VirtualSize > 0 {
- fmt.Fprintf(w, "%s (virtual %s)\n", utils.HumanSize(out.Size), utils.HumanSize(out.VirtualSize))
- } else {
- fmt.Fprintf(w, "%s\n", utils.HumanSize(out.Size))
- }
- } else {
- if *noTrunc {
- fmt.Fprintln(w, out.ID)
- } else {
- fmt.Fprintln(w, utils.TruncateID(out.ID))
- }
- }
- }
- if !*quiet {
- w.Flush()
- }
- }
- return nil
- }
- func (cli *DockerCli) CmdPs(args ...string) error {
- cmd := Subcmd("ps", "[OPTIONS]", "List containers")
- quiet := cmd.Bool("q", false, "Only display numeric IDs")
- 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.")
- since := cmd.String("sinceId", "", "Show only containers created since Id, include non-running ones.")
- before := cmd.String("beforeId", "", "Show only container created before Id, 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
- }
- v := url.Values{}
- if *last == -1 && *nLatest {
- *last = 1
- }
- if *all {
- v.Set("all", "1")
- }
- if *last != -1 {
- v.Set("limit", strconv.Itoa(*last))
- }
- if *since != "" {
- v.Set("since", *since)
- }
- if *before != "" {
- v.Set("before", *before)
- }
- body, _, err := cli.call("GET", "/containers/json?"+v.Encode(), nil)
- if err != nil {
- return err
- }
- var outs []APIContainers
- err = json.Unmarshal(body, &outs)
- if err != nil {
- return err
- }
- w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
- if !*quiet {
- fmt.Fprintln(w, "ID\tIMAGE\tCOMMAND\tCREATED\tSTATUS\tPORTS\tSIZE")
- }
- for _, out := range outs {
- if !*quiet {
- if *noTrunc {
- fmt.Fprintf(w, "%s\t%s\t%s\t%s ago\t%s\t%s\t", out.ID, out.Image, out.Command, utils.HumanDuration(time.Now().Sub(time.Unix(out.Created, 0))), out.Status, out.Ports)
- } else {
- fmt.Fprintf(w, "%s\t%s\t%s\t%s ago\t%s\t%s\t", utils.TruncateID(out.ID), out.Image, utils.Trunc(out.Command, 20), utils.HumanDuration(time.Now().Sub(time.Unix(out.Created, 0))), out.Status, out.Ports)
- }
- if out.SizeRootFs > 0 {
- fmt.Fprintf(w, "%s (virtual %s)\n", utils.HumanSize(out.SizeRw), utils.HumanSize(out.SizeRootFs))
- } else {
- fmt.Fprintf(w, "%s\n", utils.HumanSize(out.SizeRw))
- }
- } else {
- if *noTrunc {
- fmt.Fprintln(w, out.ID)
- } else {
- fmt.Fprintln(w, utils.TruncateID(out.ID))
- }
- }
- }
- if !*quiet {
- w.Flush()
- }
- return nil
- }
- func (cli *DockerCli) 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")
- flAuthor := cmd.String("author", "", "Author (eg. \"John Hannibal Smith <hannibal@a-team.com>\"")
- flConfig := cmd.String("run", "", "Config automatically applied when the image is run. "+`(ex: {"Cmd": ["cat", "/world"], "PortSpecs": ["22"]}')`)
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- name, repository, tag := cmd.Arg(0), cmd.Arg(1), cmd.Arg(2)
- if name == "" {
- cmd.Usage()
- return nil
- }
- v := url.Values{}
- v.Set("container", name)
- v.Set("repo", repository)
- v.Set("tag", tag)
- v.Set("comment", *flComment)
- v.Set("author", *flAuthor)
- var config *Config
- if *flConfig != "" {
- config = &Config{}
- if err := json.Unmarshal([]byte(*flConfig), config); err != nil {
- return err
- }
- }
- body, _, err := cli.call("POST", "/commit?"+v.Encode(), config)
- if err != nil {
- return err
- }
- apiID := &APIID{}
- err = json.Unmarshal(body, apiID)
- if err != nil {
- return err
- }
- fmt.Println(apiID.ID)
- return nil
- }
- func (cli *DockerCli) 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
- }
- if cmd.NArg() != 1 {
- cmd.Usage()
- return nil
- }
- if err := cli.stream("GET", "/containers/"+cmd.Arg(0)+"/export", nil, os.Stdout); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) 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 := cli.call("GET", "/containers/"+cmd.Arg(0)+"/changes", nil)
- if err != nil {
- return err
- }
- changes := []Change{}
- err = json.Unmarshal(body, &changes)
- if err != nil {
- return err
- }
- for _, change := range changes {
- fmt.Println(change.String())
- }
- return nil
- }
- func (cli *DockerCli) 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
- }
- if err := cli.hijack("POST", "/containers/"+cmd.Arg(0)+"/attach?logs=1&stdout=1", false, nil, os.Stdout); err != nil {
- return err
- }
- if err := cli.hijack("POST", "/containers/"+cmd.Arg(0)+"/attach?logs=1&stderr=1", false, nil, os.Stderr); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) 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 := cli.call("GET", "/containers/"+cmd.Arg(0)+"/json", nil)
- if err != nil {
- return err
- }
- container := &Container{}
- err = json.Unmarshal(body, container)
- if err != nil {
- return err
- }
- if !container.State.Running {
- return fmt.Errorf("Impossible to attach to a stopped container, start it first")
- }
- if container.Config.Tty {
- cli.monitorTtySize(cmd.Arg(0))
- }
- v := url.Values{}
- v.Set("stream", "1")
- v.Set("stdin", "1")
- v.Set("stdout", "1")
- v.Set("stderr", "1")
- if err := cli.hijack("POST", "/containers/"+cmd.Arg(0)+"/attach?"+v.Encode(), container.Config.Tty, os.Stdin, os.Stdout); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdSearch(args ...string) error {
- cmd := Subcmd("search", "NAME", "Search the docker index for images")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 1 {
- cmd.Usage()
- return nil
- }
- v := url.Values{}
- v.Set("term", cmd.Arg(0))
- body, _, err := cli.call("GET", "/images/search?"+v.Encode(), nil)
- if err != nil {
- return err
- }
- outs := []APISearch{}
- err = json.Unmarshal(body, &outs)
- if err != nil {
- return err
- }
- fmt.Printf("Found %d results matching your query (\"%s\")\n", len(outs), cmd.Arg(0))
- w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
- fmt.Fprintf(w, "NAME\tDESCRIPTION\n")
- for _, out := range outs {
- desc := strings.Replace(out.Description, "\n", " ", -1)
- desc = strings.Replace(desc, "\r", " ", -1)
- if len(desc) > 45 {
- desc = utils.Trunc(desc, 42) + "..."
- }
- fmt.Fprintf(w, "%s\t%s\n", out.Name, desc)
- }
- w.Flush()
- return nil
- }
- // Ports type - Used to parse multiple -p flags
- type ports []int
- // 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
- }
- // PathOpts stores a unique set of absolute paths
- type PathOpts map[string]struct{}
- func NewPathOpts() PathOpts {
- return make(PathOpts)
- }
- func (opts PathOpts) String() string {
- return fmt.Sprintf("%v", map[string]struct{}(opts))
- }
- func (opts PathOpts) Set(val string) error {
- if !filepath.IsAbs(val) {
- return fmt.Errorf("%s is not an absolute path", val)
- }
- opts[filepath.Clean(val)] = struct{}{}
- return nil
- }
- func (cli *DockerCli) 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 {
- v.Set("force", "1")
- }
- if _, _, err := cli.call("POST", "/images/"+cmd.Arg(0)+"/tag?"+v.Encode(), nil); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdRun(args ...string) error {
- config, cmd, err := ParseRun(args, nil)
- if err != nil {
- return err
- }
- if config.Image == "" {
- cmd.Usage()
- return nil
- }
- //create the container
- body, statusCode, err := cli.call("POST", "/containers/create", config)
- //if image not found try to pull it
- if statusCode == 404 {
- v := url.Values{}
- v.Set("fromImage", config.Image)
- err = cli.stream("POST", "/images/create?"+v.Encode(), nil, os.Stderr)
- if err != nil {
- return err
- }
- body, _, err = cli.call("POST", "/containers/create", config)
- if err != nil {
- return err
- }
- }
- if err != nil {
- return err
- }
- out := &APIRun{}
- err = json.Unmarshal(body, out)
- if err != nil {
- return err
- }
- for _, warning := range out.Warnings {
- fmt.Fprintln(os.Stderr, "WARNING: ", warning)
- }
- //start the container
- _, _, err = cli.call("POST", "/containers/"+out.ID+"/start", nil)
- if err != nil {
- return err
- }
- if !config.AttachStdout && !config.AttachStderr {
- fmt.Println(out.ID)
- } else {
- if config.Tty {
- cli.monitorTtySize(out.ID)
- }
- v := url.Values{}
- v.Set("logs", "1")
- v.Set("stream", "1")
- if config.AttachStdin {
- v.Set("stdin", "1")
- }
- if config.AttachStdout {
- v.Set("stdout", "1")
- }
- if config.AttachStderr {
- v.Set("stderr", "1")
- }
- if err := cli.hijack("POST", "/containers/"+out.ID+"/attach?"+v.Encode(), config.Tty, os.Stdin, os.Stdout); err != nil {
- utils.Debugf("Error hijack: %s", err)
- return err
- }
- }
- return nil
- }
- func (cli *DockerCli) checkIfLogged(condition bool, action string) error {
- // If condition AND the login failed
- if condition && cli.authConfig.Username == "" {
- if err := cli.CmdLogin(""); err != nil {
- return err
- }
- if cli.authConfig.Username == "" {
- return fmt.Errorf("Please login prior to %s. ('docker login')", action)
- }
- }
- return nil
- }
- func (cli *DockerCli) call(method, path string, data interface{}) ([]byte, int, error) {
- var params io.Reader
- if data != nil {
- buf, err := json.Marshal(data)
- if err != nil {
- return nil, -1, err
- }
- params = bytes.NewBuffer(buf)
- }
- req, err := http.NewRequest(method, fmt.Sprintf("/v%g%s", APIVERSION, path), params)
- if err != nil {
- return nil, -1, err
- }
- req.Header.Set("User-Agent", "Docker-Client/"+VERSION)
- if data != nil {
- req.Header.Set("Content-Type", "application/json")
- } else if method == "POST" {
- req.Header.Set("Content-Type", "plain/text")
- }
- dial, err := net.Dial(cli.proto, cli.addr)
- if err != nil {
- return nil, -1, err
- }
- clientconn := httputil.NewClientConn(dial, nil)
- resp, err := clientconn.Do(req)
- defer clientconn.Close()
- if err != nil {
- if strings.Contains(err.Error(), "connection refused") {
- return nil, -1, fmt.Errorf("Can't connect to docker daemon. Is 'docker -d' running on this host?")
- }
- return nil, -1, err
- }
- defer resp.Body.Close()
- body, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- return nil, -1, err
- }
- if resp.StatusCode < 200 || resp.StatusCode >= 400 {
- if len(body) == 0 {
- return nil, resp.StatusCode, fmt.Errorf("Error: %s", http.StatusText(resp.StatusCode))
- }
- return nil, resp.StatusCode, fmt.Errorf("Error: %s", body)
- }
- return body, resp.StatusCode, nil
- }
- func (cli *DockerCli) stream(method, path string, in io.Reader, out io.Writer) error {
- if (method == "POST" || method == "PUT") && in == nil {
- in = bytes.NewReader([]byte{})
- }
- req, err := http.NewRequest(method, fmt.Sprintf("/v%g%s", APIVERSION, path), in)
- if err != nil {
- return err
- }
- req.Header.Set("User-Agent", "Docker-Client/"+VERSION)
- if method == "POST" {
- req.Header.Set("Content-Type", "plain/text")
- }
- dial, err := net.Dial(cli.proto, cli.addr)
- if err != nil {
- return err
- }
- clientconn := httputil.NewClientConn(dial, nil)
- resp, err := clientconn.Do(req)
- defer clientconn.Close()
- if err != nil {
- if strings.Contains(err.Error(), "connection refused") {
- return fmt.Errorf("Can't connect to docker daemon. Is 'docker -d' running on this host?")
- }
- return err
- }
- defer resp.Body.Close()
- if resp.StatusCode < 200 || resp.StatusCode >= 400 {
- body, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- return err
- }
- if len(body) == 0 {
- return fmt.Errorf("Error :%s", http.StatusText(resp.StatusCode))
- }
- return fmt.Errorf("Error: %s", body)
- }
- if resp.Header.Get("Content-Type") == "application/json" {
- dec := json.NewDecoder(resp.Body)
- for {
- var m utils.JSONMessage
- if err := dec.Decode(&m); err == io.EOF {
- break
- } else if err != nil {
- return err
- }
- if m.Progress != "" {
- fmt.Fprintf(out, "%s %s\r", m.Status, m.Progress)
- } else if m.Error != "" {
- return fmt.Errorf(m.Error)
- } else {
- fmt.Fprintf(out, "%s\n", m.Status)
- }
- }
- } else {
- if _, err := io.Copy(out, resp.Body); err != nil {
- return err
- }
- }
- return nil
- }
- func (cli *DockerCli) hijack(method, path string, setRawTerminal bool, in *os.File, out io.Writer) error {
- req, err := http.NewRequest(method, fmt.Sprintf("/v%g%s", APIVERSION, path), nil)
- if err != nil {
- return err
- }
- req.Header.Set("User-Agent", "Docker-Client/"+VERSION)
- req.Header.Set("Content-Type", "plain/text")
- dial, err := net.Dial(cli.proto, cli.addr)
- if err != nil {
- return err
- }
- clientconn := httputil.NewClientConn(dial, nil)
- defer clientconn.Close()
- // Server hijacks the connection, error 'connection closed' expected
- clientconn.Do(req)
- rwc, br := clientconn.Hijack()
- defer rwc.Close()
- receiveStdout := utils.Go(func() error {
- _, err := io.Copy(out, br)
- return err
- })
- if in != nil && setRawTerminal && term.IsTerminal(in.Fd()) && os.Getenv("NORAW") == "" {
- oldState, err := term.SetRawTerminal()
- if err != nil {
- return err
- }
- defer term.RestoreTerminal(oldState)
- }
- sendStdin := utils.Go(func() error {
- io.Copy(rwc, in)
- if err := rwc.(*net.TCPConn).CloseWrite(); err != nil {
- utils.Debugf("Couldn't send EOF: %s\n", err)
- }
- // Discard errors due to pipe interruption
- return nil
- })
- if err := <-receiveStdout; err != nil {
- utils.Debugf("Error receiveStdout: %s", err)
- return err
- }
- if !term.IsTerminal(in.Fd()) {
- if err := <-sendStdin; err != nil {
- utils.Debugf("Error sendStdin: %s", err)
- return err
- }
- }
- return nil
- }
- func (cli *DockerCli) resizeTty(id string) {
- ws, err := term.GetWinsize(os.Stdin.Fd())
- if err != nil {
- utils.Debugf("Error getting size: %s", err)
- }
- v := url.Values{}
- v.Set("h", strconv.Itoa(int(ws.Height)))
- v.Set("w", strconv.Itoa(int(ws.Width)))
- if _, _, err := cli.call("POST", "/containers/"+id+"/resize?"+v.Encode(), nil); err != nil {
- utils.Debugf("Error resize: %s", err)
- }
- }
- func (cli *DockerCli) monitorTtySize(id string) {
- cli.resizeTty(id)
- c := make(chan os.Signal, 1)
- signal.Notify(c, syscall.SIGWINCH)
- go func() {
- for sig := range c {
- if sig == syscall.SIGWINCH {
- cli.resizeTty(id)
- }
- }
- }()
- }
- 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
- }
- func NewDockerCli(proto, addr string) *DockerCli {
- authConfig, _ := auth.LoadConfig(os.Getenv("HOME"))
- return &DockerCli{proto, addr, authConfig}
- }
- type DockerCli struct {
- proto string
- addr string
- authConfig *auth.AuthConfig
- }
|