123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559 |
- package docker
- import (
- "archive/tar"
- "bufio"
- "bytes"
- "encoding/base64"
- "encoding/json"
- "errors"
- "flag"
- "fmt"
- "github.com/dotcloud/docker/archive"
- "github.com/dotcloud/docker/auth"
- "github.com/dotcloud/docker/registry"
- "github.com/dotcloud/docker/term"
- "github.com/dotcloud/docker/utils"
- "io"
- "io/ioutil"
- "net"
- "net/http"
- "net/http/httputil"
- "net/url"
- "os"
- "os/signal"
- "path"
- "path/filepath"
- "reflect"
- "regexp"
- "runtime"
- "sort"
- "strconv"
- "strings"
- "syscall"
- "text/tabwriter"
- "time"
- )
- var (
- GITCOMMIT string
- VERSION string
- )
- var (
- ErrConnectionRefused = errors.New("Can't connect to docker daemon. Is 'docker -d' running on this host?")
- )
- func (cli *DockerCli) getMethod(name string) (func(...string) error, bool) {
- methodName := "Cmd" + strings.ToUpper(name[:1]) + strings.ToLower(name[1:])
- method := reflect.ValueOf(cli).MethodByName(methodName)
- if !method.IsValid() {
- return nil, false
- }
- return method.Interface().(func(...string) error), true
- }
- func ParseCommands(proto, addr string, args ...string) error {
- cli := NewDockerCli(os.Stdin, os.Stdout, os.Stderr, 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:]...)
- }
- return method(args[1:]...)
- }
- return cli.CmdHelp(args...)
- }
- func (cli *DockerCli) CmdHelp(args ...string) error {
- if len(args) > 0 {
- method, exists := cli.getMethod(args[0])
- if !exists {
- fmt.Fprintf(cli.err, "Error: Command not found: %s\n", args[0])
- } else {
- method("--help")
- return nil
- }
- }
- help := fmt.Sprintf("Usage: docker [OPTIONS] COMMAND [arg...]\n -H=[unix://%s]: tcp://host:port to bind/connect to or unix://path/to/socket to use\n\nA self-sufficient runtime for linux containers.\n\nCommands:\n", DEFAULTUNIXSOCKET)
- for _, command := range [][]string{
- {"attach", "Attach to a running container"},
- {"build", "Build a container from a Dockerfile"},
- {"commit", "Create a new image from a container's changes"},
- {"cp", "Copy files/folders from the containers filesystem to the host path"},
- {"diff", "Inspect changes on a container's filesystem"},
- {"events", "Get real time events from the server"},
- {"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"},
- {"load", "Load an image from a tar archive"},
- {"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 one or more containers"},
- {"rmi", "Remove one or more images"},
- {"run", "Run a command in a new container"},
- {"save", "Save an image to a tar archive"},
- {"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"},
- {"top", "Lookup the running processes of a container"},
- {"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.Fprintf(cli.err, "%s\n", help)
- return nil
- }
- func (cli *DockerCli) CmdInsert(args ...string) error {
- cmd := cli.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))
- return cli.stream("POST", "/images/"+cmd.Arg(0)+"/insert?"+v.Encode(), nil, cli.out, nil)
- }
- // mkBuildContext returns an archive of an empty context with the contents
- // of `dockerfile` at the path ./Dockerfile
- func MkBuildContext(dockerfile string, files [][2]string) (archive.Archive, error) {
- buf := new(bytes.Buffer)
- tw := tar.NewWriter(buf)
- files = append(files, [2]string{"Dockerfile", dockerfile})
- for _, file := range files {
- name, content := file[0], file[1]
- hdr := &tar.Header{
- Name: name,
- Size: int64(len(content)),
- }
- if err := tw.WriteHeader(hdr); err != nil {
- return nil, err
- }
- if _, err := tw.Write([]byte(content)); err != nil {
- return nil, err
- }
- }
- if err := tw.Close(); err != nil {
- return nil, err
- }
- return buf, nil
- }
- func (cli *DockerCli) CmdBuild(args ...string) error {
- cmd := cli.Subcmd("build", "[OPTIONS] PATH | URL | -", "Build a new container image from the source code at PATH")
- tag := cmd.String("t", "", "Repository name (and optionally a tag) to be applied to the resulting image in case of success")
- suppressOutput := cmd.Bool("q", false, "Suppress verbose build output")
- noCache := cmd.Bool("no-cache", false, "Do not use cache when building the image")
- rm := cmd.Bool("rm", false, "Remove intermediate containers after a successful build")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 1 {
- cmd.Usage()
- return nil
- }
- var (
- context archive.Archive
- isRemote bool
- err error
- )
- if cmd.Arg(0) == "-" {
- // As a special case, 'docker build -' will build from an empty context with the
- // contents of stdin as a Dockerfile
- dockerfile, err := ioutil.ReadAll(cli.in)
- if err != nil {
- return err
- }
- context, err = MkBuildContext(string(dockerfile), nil)
- } else if utils.IsURL(cmd.Arg(0)) || utils.IsGIT(cmd.Arg(0)) {
- isRemote = true
- } else {
- if _, err := os.Stat(cmd.Arg(0)); err != nil {
- return err
- }
- context, err = archive.Tar(cmd.Arg(0), archive.Uncompressed)
- }
- var body io.Reader
- // Setup an upload progress bar
- // FIXME: ProgressReader shouldn't be this annoying to use
- if context != nil {
- sf := utils.NewStreamFormatter(false)
- body = utils.ProgressReader(ioutil.NopCloser(context), 0, cli.err, sf.FormatProgress("", "Uploading context", "%v bytes%0.0s%0.0s"), sf, true)
- }
- // Upload the build context
- v := &url.Values{}
- v.Set("t", *tag)
- if *suppressOutput {
- v.Set("q", "1")
- }
- if isRemote {
- v.Set("remote", cmd.Arg(0))
- }
- if *noCache {
- v.Set("nocache", "1")
- }
- if *rm {
- v.Set("rm", "1")
- }
- req, err := http.NewRequest("POST", fmt.Sprintf("/v%g/build?%s", APIVERSION, v.Encode()), body)
- if err != nil {
- return err
- }
- if context != nil {
- req.Header.Set("Content-Type", "application/tar")
- }
- 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(cli.out, resp.Body); err != nil {
- return err
- }
- return nil
- }
- // 'docker login': login / register a user to registry service.
- func (cli *DockerCli) CmdLogin(args ...string) error {
- cmd := cli.Subcmd("login", "[OPTIONS] [SERVER]", "Register or Login to a docker registry server, if no server is specified \""+auth.IndexServerAddress()+"\" is the default.")
- var username, password, email string
- cmd.StringVar(&username, "u", "", "username")
- cmd.StringVar(&password, "p", "", "password")
- cmd.StringVar(&email, "e", "", "email")
- err := cmd.Parse(args)
- if err != nil {
- return nil
- }
- serverAddress := auth.IndexServerAddress()
- if len(cmd.Args()) > 0 {
- serverAddress, err = registry.ExpandAndVerifyRegistryUrl(cmd.Arg(0))
- if err != nil {
- return err
- }
- fmt.Fprintf(cli.out, "Login against server at %s\n", serverAddress)
- }
- promptDefault := func(prompt string, configDefault string) {
- if configDefault == "" {
- fmt.Fprintf(cli.out, "%s: ", prompt)
- } else {
- fmt.Fprintf(cli.out, "%s (%s): ", prompt, configDefault)
- }
- }
- readInput := func(in io.Reader, out io.Writer) string {
- reader := bufio.NewReader(in)
- line, _, err := reader.ReadLine()
- if err != nil {
- fmt.Fprintln(out, err.Error())
- os.Exit(1)
- }
- return string(line)
- }
- cli.LoadConfigFile()
- authconfig, ok := cli.configFile.Configs[serverAddress]
- if !ok {
- authconfig = auth.AuthConfig{}
- }
- if username == "" {
- promptDefault("Username", authconfig.Username)
- username = readInput(cli.in, cli.out)
- if username == "" {
- username = authconfig.Username
- }
- }
- if username != authconfig.Username {
- if password == "" {
- oldState, _ := term.SaveState(cli.terminalFd)
- fmt.Fprintf(cli.out, "Password: ")
- term.DisableEcho(cli.terminalFd, oldState)
- password = readInput(cli.in, cli.out)
- fmt.Fprint(cli.out, "\n")
- term.RestoreTerminal(cli.terminalFd, oldState)
- if password == "" {
- return fmt.Errorf("Error : Password Required")
- }
- }
- if email == "" {
- promptDefault("Email", authconfig.Email)
- email = readInput(cli.in, cli.out)
- if email == "" {
- email = authconfig.Email
- }
- }
- } else {
- password = authconfig.Password
- email = authconfig.Email
- }
- authconfig.Username = username
- authconfig.Password = password
- authconfig.Email = email
- authconfig.ServerAddress = serverAddress
- cli.configFile.Configs[serverAddress] = authconfig
- body, statusCode, err := cli.call("POST", "/auth", cli.configFile.Configs[serverAddress])
- if statusCode == 401 {
- delete(cli.configFile.Configs, serverAddress)
- auth.SaveConfig(cli.configFile)
- return err
- }
- if err != nil {
- return err
- }
- var out2 APIAuth
- err = json.Unmarshal(body, &out2)
- if err != nil {
- cli.configFile, _ = auth.LoadConfig(os.Getenv("HOME"))
- return err
- }
- auth.SaveConfig(cli.configFile)
- if out2.Status != "" {
- fmt.Fprintf(cli.out, "%s\n", out2.Status)
- }
- return nil
- }
- // 'docker wait': block until a container stops
- func (cli *DockerCli) CmdWait(args ...string) error {
- cmd := cli.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
- }
- var encounteredError error
- for _, name := range cmd.Args() {
- status, err := waitForExit(cli, name)
- if err != nil {
- fmt.Fprintf(cli.err, "%s\n", err)
- encounteredError = fmt.Errorf("Error: failed to wait one or more containers")
- } else {
- fmt.Fprintf(cli.out, "%d\n", status)
- }
- }
- return encounteredError
- }
- // 'docker version': show version information
- func (cli *DockerCli) CmdVersion(args ...string) error {
- cmd := cli.Subcmd("version", "", "Show the docker version information.")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() > 0 {
- cmd.Usage()
- return nil
- }
- if VERSION != "" {
- fmt.Fprintf(cli.out, "Client version: %s\n", VERSION)
- }
- fmt.Fprintf(cli.out, "Go version (client): %s\n", runtime.Version())
- if GITCOMMIT != "" {
- fmt.Fprintf(cli.out, "Git commit (client): %s\n", GITCOMMIT)
- }
- body, _, err := cli.call("GET", "/version", nil)
- if err != nil {
- return err
- }
- var out APIVersion
- err = json.Unmarshal(body, &out)
- if err != nil {
- utils.Errorf("Error unmarshal: body: %s, err: %s\n", body, err)
- return err
- }
- if out.Version != "" {
- fmt.Fprintf(cli.out, "Server version: %s\n", out.Version)
- }
- if out.GitCommit != "" {
- fmt.Fprintf(cli.out, "Git commit (server): %s\n", out.GitCommit)
- }
- if out.GoVersion != "" {
- fmt.Fprintf(cli.out, "Go version (server): %s\n", out.GoVersion)
- }
- release := utils.GetReleaseVersion()
- if release != "" {
- fmt.Fprintf(cli.out, "Last stable version: %s", release)
- if (VERSION != "" || out.Version != "") && (strings.Trim(VERSION, "-dev") != release || strings.Trim(out.Version, "-dev") != release) {
- fmt.Fprintf(cli.out, ", please update docker")
- }
- fmt.Fprintf(cli.out, "\n")
- }
- return nil
- }
- // 'docker info': display system-wide information.
- func (cli *DockerCli) CmdInfo(args ...string) error {
- cmd := cli.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.Fprintf(cli.out, "Containers: %d\n", out.Containers)
- fmt.Fprintf(cli.out, "Images: %d\n", out.Images)
- if out.Debug || os.Getenv("DEBUG") != "" {
- fmt.Fprintf(cli.out, "Debug mode (server): %v\n", out.Debug)
- fmt.Fprintf(cli.out, "Debug mode (client): %v\n", os.Getenv("DEBUG") != "")
- fmt.Fprintf(cli.out, "Fds: %d\n", out.NFd)
- fmt.Fprintf(cli.out, "Goroutines: %d\n", out.NGoroutines)
- fmt.Fprintf(cli.out, "LXC Version: %s\n", out.LXCVersion)
- fmt.Fprintf(cli.out, "EventsListeners: %d\n", out.NEventsListener)
- fmt.Fprintf(cli.out, "Kernel Version: %s\n", out.KernelVersion)
- }
- if len(out.IndexServerAddress) != 0 {
- cli.LoadConfigFile()
- u := cli.configFile.Configs[out.IndexServerAddress].Username
- if len(u) > 0 {
- fmt.Fprintf(cli.out, "Username: %v\n", u)
- fmt.Fprintf(cli.out, "Registry: %v\n", out.IndexServerAddress)
- }
- }
- if !out.MemoryLimit {
- fmt.Fprintf(cli.err, "WARNING: No memory limit support\n")
- }
- if !out.SwapLimit {
- fmt.Fprintf(cli.err, "WARNING: No swap limit support\n")
- }
- if !out.IPv4Forwarding {
- fmt.Fprintf(cli.err, "WARNING: IPv4 forwarding is disabled.\n")
- }
- return nil
- }
- func (cli *DockerCli) CmdStop(args ...string) error {
- cmd := cli.Subcmd("stop", "[OPTIONS] CONTAINER [CONTAINER...]", "Stop a running container (Send SIGTERM, and then SIGKILL after grace period)")
- nSeconds := cmd.Int("t", 10, "Number of seconds to wait for the container to stop before killing it.")
- 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))
- var encounteredError error
- for _, name := range cmd.Args() {
- _, _, err := cli.call("POST", "/containers/"+name+"/stop?"+v.Encode(), nil)
- if err != nil {
- fmt.Fprintf(cli.err, "%s\n", err)
- encounteredError = fmt.Errorf("Error: failed to stop one or more containers")
- } else {
- fmt.Fprintf(cli.out, "%s\n", name)
- }
- }
- return encounteredError
- }
- func (cli *DockerCli) CmdRestart(args ...string) error {
- cmd := cli.Subcmd("restart", "[OPTIONS] CONTAINER [CONTAINER...]", "Restart a running container")
- nSeconds := cmd.Int("t", 10, "Number of seconds to try to stop for before killing the container. Once killed it will then be restarted. Default=10")
- 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))
- var encounteredError error
- for _, name := range cmd.Args() {
- _, _, err := cli.call("POST", "/containers/"+name+"/restart?"+v.Encode(), nil)
- if err != nil {
- fmt.Fprintf(cli.err, "%s\n", err)
- encounteredError = fmt.Errorf("Error: failed to restart one or more containers")
- } else {
- fmt.Fprintf(cli.out, "%s\n", name)
- }
- }
- return encounteredError
- }
- func (cli *DockerCli) forwardAllSignals(cid string) chan os.Signal {
- sigc := make(chan os.Signal, 1)
- utils.CatchAll(sigc)
- go func() {
- for s := range sigc {
- if s == syscall.SIGCHLD {
- continue
- }
- if _, _, err := cli.call("POST", fmt.Sprintf("/containers/%s/kill?signal=%d", cid, s), nil); err != nil {
- utils.Debugf("Error sending signal: %s", err)
- }
- }
- }()
- return sigc
- }
- func (cli *DockerCli) CmdStart(args ...string) error {
- cmd := cli.Subcmd("start", "CONTAINER [CONTAINER...]", "Restart a stopped container")
- attach := cmd.Bool("a", false, "Attach container's stdout/stderr and forward all signals to the process")
- openStdin := cmd.Bool("i", false, "Attach container's stdin")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- var cErr chan error
- var tty bool
- if *attach || *openStdin {
- if cmd.NArg() > 1 {
- return fmt.Errorf("Impossible to start and attach multiple containers at once.")
- }
- 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
- }
- tty = container.Config.Tty
- if !container.Config.Tty {
- sigc := cli.forwardAllSignals(cmd.Arg(0))
- defer utils.StopCatch(sigc)
- }
- var in io.ReadCloser
- v := url.Values{}
- v.Set("stream", "1")
- if *openStdin && container.Config.OpenStdin {
- v.Set("stdin", "1")
- in = cli.in
- }
- v.Set("stdout", "1")
- v.Set("stderr", "1")
- cErr = utils.Go(func() error {
- return cli.hijack("POST", "/containers/"+cmd.Arg(0)+"/attach?"+v.Encode(), container.Config.Tty, in, cli.out, cli.err, nil)
- })
- }
- var encounteredError error
- for _, name := range cmd.Args() {
- _, _, err := cli.call("POST", "/containers/"+name+"/start", nil)
- if err != nil {
- if !*attach || !*openStdin {
- fmt.Fprintf(cli.err, "%s\n", err)
- encounteredError = fmt.Errorf("Error: failed to start one or more containers")
- }
- } else {
- if !*attach || !*openStdin {
- fmt.Fprintf(cli.out, "%s\n", name)
- }
- }
- }
- if encounteredError != nil {
- if *openStdin || *attach {
- cli.in.Close()
- <-cErr
- }
- return encounteredError
- }
- if *openStdin || *attach {
- if tty && cli.isTerminal {
- if err := cli.monitorTtySize(cmd.Arg(0)); err != nil {
- utils.Errorf("Error monitoring TTY size: %s\n", err)
- }
- }
- return <-cErr
- }
- return nil
- }
- func (cli *DockerCli) CmdInspect(args ...string) error {
- cmd := cli.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
- }
- indented := new(bytes.Buffer)
- status := 0
- for _, name := range args {
- obj, _, err := cli.call("GET", "/containers/"+name+"/json", nil)
- if err != nil {
- obj, _, err = cli.call("GET", "/images/"+name+"/json", nil)
- if err != nil {
- if strings.Contains(err.Error(), "No such") {
- fmt.Fprintf(cli.err, "Error: No such image or container: %s\n", name)
- } else {
- fmt.Fprintf(cli.err, "%s", err)
- }
- status = 1
- continue
- }
- }
- if err = json.Indent(indented, obj, "", " "); err != nil {
- fmt.Fprintf(cli.err, "%s\n", err)
- status = 1
- continue
- }
- indented.WriteString(",")
- }
- if indented.Len() > 0 {
- // Remove trailing ','
- indented.Truncate(indented.Len() - 1)
- }
- fmt.Fprintf(cli.out, "[")
- if _, err := io.Copy(cli.out, indented); err != nil {
- return err
- }
- fmt.Fprintf(cli.out, "]")
- if status != 0 {
- return &utils.StatusError{Status: status}
- }
- return nil
- }
- func (cli *DockerCli) CmdTop(args ...string) error {
- cmd := cli.Subcmd("top", "CONTAINER [ps OPTIONS]", "Lookup the running processes of a container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() == 0 {
- cmd.Usage()
- return nil
- }
- val := url.Values{}
- if cmd.NArg() > 1 {
- val.Set("ps_args", strings.Join(cmd.Args()[1:], " "))
- }
- body, _, err := cli.call("GET", "/containers/"+cmd.Arg(0)+"/top?"+val.Encode(), nil)
- if err != nil {
- return err
- }
- procs := APITop{}
- err = json.Unmarshal(body, &procs)
- if err != nil {
- return err
- }
- w := tabwriter.NewWriter(cli.out, 20, 1, 3, ' ', 0)
- fmt.Fprintln(w, strings.Join(procs.Titles, "\t"))
- for _, proc := range procs.Processes {
- fmt.Fprintln(w, strings.Join(proc, "\t"))
- }
- w.Flush()
- return nil
- }
- func (cli *DockerCli) CmdPort(args ...string) error {
- cmd := cli.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
- }
- port := cmd.Arg(1)
- proto := "tcp"
- parts := strings.SplitN(port, "/", 2)
- if len(parts) == 2 && len(parts[1]) != 0 {
- port = parts[0]
- proto = parts[1]
- }
- 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 frontends, exists := out.NetworkSettings.Ports[Port(port+"/"+proto)]; exists {
- if frontends == nil {
- fmt.Fprintf(cli.out, "%s\n", port)
- } else {
- for _, frontend := range frontends {
- fmt.Fprintf(cli.out, "%s:%s\n", frontend.HostIp, frontend.HostPort)
- }
- }
- } 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 := cli.Subcmd("rmi", "IMAGE [IMAGE...]", "Remove one or more images")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- var encounteredError error
- for _, name := range cmd.Args() {
- body, _, err := cli.call("DELETE", "/images/"+name, nil)
- if err != nil {
- fmt.Fprintf(cli.err, "%s\n", err)
- encounteredError = fmt.Errorf("Error: failed to remove one or more images")
- } else {
- var outs []APIRmi
- err = json.Unmarshal(body, &outs)
- if err != nil {
- fmt.Fprintf(cli.err, "%s\n", err)
- encounteredError = fmt.Errorf("Error: failed to remove one or more images")
- continue
- }
- for _, out := range outs {
- if out.Deleted != "" {
- fmt.Fprintf(cli.out, "Deleted: %s\n", out.Deleted)
- } else {
- fmt.Fprintf(cli.out, "Untagged: %s\n", out.Untagged)
- }
- }
- }
- }
- return encounteredError
- }
- func (cli *DockerCli) CmdHistory(args ...string) error {
- cmd := cli.Subcmd("history", "[OPTIONS] IMAGE", "Show the history of an image")
- quiet := cmd.Bool("q", false, "only show numeric IDs")
- noTrunc := cmd.Bool("notrunc", false, "Don't truncate output")
- 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(cli.out, 20, 1, 3, ' ', 0)
- if !*quiet {
- fmt.Fprintln(w, "IMAGE\tCREATED\tCREATED BY\tSIZE")
- }
- for _, out := range outs {
- if !*quiet {
- 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 *noTrunc {
- fmt.Fprintf(w, "%s\t", out.CreatedBy)
- } else {
- fmt.Fprintf(w, "%s\t", utils.Trunc(out.CreatedBy, 45))
- }
- 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))
- }
- }
- }
- w.Flush()
- return nil
- }
- func (cli *DockerCli) CmdRm(args ...string) error {
- cmd := cli.Subcmd("rm", "[OPTIONS] CONTAINER [CONTAINER...]", "Remove one or more containers")
- v := cmd.Bool("v", false, "Remove the volumes associated to the container")
- link := cmd.Bool("link", false, "Remove the specified link and not the underlying 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")
- }
- if *link {
- val.Set("link", "1")
- }
- var encounteredError error
- for _, name := range cmd.Args() {
- _, _, err := cli.call("DELETE", "/containers/"+name+"?"+val.Encode(), nil)
- if err != nil {
- fmt.Fprintf(cli.err, "%s\n", err)
- encounteredError = fmt.Errorf("Error: failed to remove one or more containers")
- } else {
- fmt.Fprintf(cli.out, "%s\n", name)
- }
- }
- return encounteredError
- }
- // 'docker kill NAME' kills a running container
- func (cli *DockerCli) CmdKill(args ...string) error {
- cmd := cli.Subcmd("kill", "CONTAINER [CONTAINER...]", "Kill a running container (send SIGKILL)")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- var encounteredError error
- for _, name := range args {
- if _, _, err := cli.call("POST", "/containers/"+name+"/kill", nil); err != nil {
- fmt.Fprintf(cli.err, "%s\n", err)
- encounteredError = fmt.Errorf("Error: failed to kill one or more containers")
- } else {
- fmt.Fprintf(cli.out, "%s\n", name)
- }
- }
- return encounteredError
- }
- func (cli *DockerCli) CmdImport(args ...string) error {
- cmd := cli.Subcmd("import", "URL|- [REPOSITORY[:TAG]]", "Create a new filesystem image from the contents of a tarball(.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz).")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- var src, repository, tag string
- if cmd.NArg() == 3 {
- fmt.Fprintf(cli.err, "[DEPRECATED] The format 'URL|- [REPOSITORY [TAG]]' as been deprecated. Please use URL|- [REPOSITORY[:TAG]]\n")
- src, repository, tag = cmd.Arg(0), cmd.Arg(1), cmd.Arg(2)
- } else {
- src = cmd.Arg(0)
- repository, tag = utils.ParseRepositoryTag(cmd.Arg(1))
- }
- v := url.Values{}
- v.Set("repo", repository)
- v.Set("tag", tag)
- v.Set("fromSrc", src)
- var in io.Reader
- if src == "-" {
- in = cli.in
- }
- return cli.stream("POST", "/images/create?"+v.Encode(), in, cli.out, nil)
- }
- func (cli *DockerCli) CmdPush(args ...string) error {
- cmd := cli.Subcmd("push", "NAME", "Push an image or a repository to the registry")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- name := cmd.Arg(0)
- if name == "" {
- cmd.Usage()
- return nil
- }
- cli.LoadConfigFile()
- // Resolve the Repository name from fqn to endpoint + name
- endpoint, _, err := registry.ResolveRepositoryName(name)
- if err != nil {
- return err
- }
- // Resolve the Auth config relevant for this server
- authConfig := cli.configFile.ResolveAuthConfig(endpoint)
- // If we're not using a custom registry, we know the restrictions
- // applied to repository names and can warn the user in advance.
- // Custom repositories can have different rules, and we must also
- // allow pushing by image ID.
- if len(strings.SplitN(name, "/", 2)) == 1 {
- username := cli.configFile.Configs[auth.IndexServerAddress()].Username
- if username == "" {
- username = "<user>"
- }
- return fmt.Errorf("Impossible to push a \"root\" repository. Please rename your repository in <user>/<repo> (ex: %s/%s)", username, name)
- }
- v := url.Values{}
- push := func(authConfig auth.AuthConfig) error {
- buf, err := json.Marshal(authConfig)
- if err != nil {
- return err
- }
- registryAuthHeader := []string{
- base64.URLEncoding.EncodeToString(buf),
- }
- return cli.stream("POST", "/images/"+name+"/push?"+v.Encode(), nil, cli.out, map[string][]string{
- "X-Registry-Auth": registryAuthHeader,
- })
- }
- if err := push(authConfig); err != nil {
- if err.Error() == registry.ErrLoginRequired.Error() {
- fmt.Fprintln(cli.out, "\nPlease login prior to push:")
- if err := cli.CmdLogin(endpoint); err != nil {
- return err
- }
- authConfig := cli.configFile.ResolveAuthConfig(endpoint)
- return push(authConfig)
- }
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdPull(args ...string) error {
- cmd := cli.Subcmd("pull", "NAME", "Pull an image or a repository from the registry")
- tag := cmd.String("t", "", "Download tagged image in repository")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 1 {
- cmd.Usage()
- return nil
- }
- remote, parsedTag := utils.ParseRepositoryTag(cmd.Arg(0))
- if *tag == "" {
- *tag = parsedTag
- }
- // Resolve the Repository name from fqn to endpoint + name
- endpoint, _, err := registry.ResolveRepositoryName(remote)
- if err != nil {
- return err
- }
- cli.LoadConfigFile()
- // Resolve the Auth config relevant for this server
- authConfig := cli.configFile.ResolveAuthConfig(endpoint)
- v := url.Values{}
- v.Set("fromImage", remote)
- v.Set("tag", *tag)
- pull := func(authConfig auth.AuthConfig) error {
- buf, err := json.Marshal(authConfig)
- if err != nil {
- return err
- }
- registryAuthHeader := []string{
- base64.URLEncoding.EncodeToString(buf),
- }
- return cli.stream("POST", "/images/create?"+v.Encode(), nil, cli.out, map[string][]string{
- "X-Registry-Auth": registryAuthHeader,
- })
- }
- if err := pull(authConfig); err != nil {
- if err.Error() == registry.ErrLoginRequired.Error() {
- fmt.Fprintln(cli.out, "\nPlease login prior to push:")
- if err := cli.CmdLogin(endpoint); err != nil {
- return err
- }
- authConfig := cli.configFile.ResolveAuthConfig(endpoint)
- return pull(authConfig)
- }
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdImages(args ...string) error {
- cmd := cli.Subcmd("images", "[OPTIONS] [NAME]", "List images")
- quiet := cmd.Bool("q", false, "only show numeric IDs")
- all := cmd.Bool("a", false, "show all images (by default filter out the intermediate images used to build)")
- noTrunc := cmd.Bool("notrunc", false, "Don't truncate output")
- flViz := cmd.Bool("viz", false, "output graph in graphviz format")
- flTree := cmd.Bool("tree", false, "output graph in tree 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/json?all=1", nil)
- if err != nil {
- return err
- }
- var outs []APIImages
- err = json.Unmarshal(body, &outs)
- if err != nil {
- return err
- }
- fmt.Fprintf(cli.out, "digraph docker {\n")
- for _, image := range outs {
- if image.ParentId == "" {
- fmt.Fprintf(cli.out, " base -> \"%s\" [style=invis]\n", utils.TruncateID(image.ID))
- } else {
- fmt.Fprintf(cli.out, " \"%s\" -> \"%s\"\n", utils.TruncateID(image.ParentId), utils.TruncateID(image.ID))
- }
- if image.RepoTags[0] != "<none>:<none>" {
- fmt.Fprintf(cli.out, " \"%s\" [label=\"%s\\n%s\",shape=box,fillcolor=\"paleturquoise\",style=\"filled,rounded\"];\n", utils.TruncateID(image.ID), utils.TruncateID(image.ID), strings.Join(image.RepoTags, "\\n"))
- }
- }
- fmt.Fprintf(cli.out, " base [style=invisible]\n}\n")
- } else if *flTree {
- body, _, err := cli.call("GET", "/images/json?all=1", nil)
- if err != nil {
- return err
- }
- var outs []APIImages
- err = json.Unmarshal(body, &outs)
- if err != nil {
- return err
- }
- var startImageArg = cmd.Arg(0)
- var startImage APIImages
- var roots []APIImages
- var byParent = make(map[string][]APIImages)
- for _, image := range outs {
- if image.ParentId == "" {
- roots = append(roots, image)
- } else {
- if children, exists := byParent[image.ParentId]; exists {
- byParent[image.ParentId] = append(children, image)
- } else {
- byParent[image.ParentId] = []APIImages{image}
- }
- }
- if startImageArg != "" {
- if startImageArg == image.ID || startImageArg == utils.TruncateID(image.ID) {
- startImage = image
- }
- for _, repotag := range image.RepoTags {
- if repotag == startImageArg {
- startImage = image
- }
- }
- }
- }
- if startImageArg != "" {
- WalkTree(cli, noTrunc, []APIImages{startImage}, byParent, "")
- } else {
- WalkTree(cli, noTrunc, roots, byParent, "")
- }
- } 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(cli.out, 20, 1, 3, ' ', 0)
- if !*quiet {
- fmt.Fprintln(w, "REPOSITORY\tTAG\tIMAGE ID\tCREATED\tSIZE")
- }
- for _, out := range outs {
- for _, repotag := range out.RepoTags {
- repo, tag := utils.ParseRepositoryTag(repotag)
- if !*noTrunc {
- out.ID = utils.TruncateID(out.ID)
- }
- if !*quiet {
- fmt.Fprintf(w, "%s\t%s\t%s\t%s ago\t", repo, tag, out.ID, 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 {
- fmt.Fprintln(w, out.ID)
- }
- }
- }
- if !*quiet {
- w.Flush()
- }
- }
- return nil
- }
- func WalkTree(cli *DockerCli, noTrunc *bool, images []APIImages, byParent map[string][]APIImages, prefix string) {
- if len(images) > 1 {
- length := len(images)
- for index, image := range images {
- if index+1 == length {
- PrintTreeNode(cli, noTrunc, image, prefix+"└─")
- if subimages, exists := byParent[image.ID]; exists {
- WalkTree(cli, noTrunc, subimages, byParent, prefix+" ")
- }
- } else {
- PrintTreeNode(cli, noTrunc, image, prefix+"|─")
- if subimages, exists := byParent[image.ID]; exists {
- WalkTree(cli, noTrunc, subimages, byParent, prefix+"| ")
- }
- }
- }
- } else {
- for _, image := range images {
- PrintTreeNode(cli, noTrunc, image, prefix+"└─")
- if subimages, exists := byParent[image.ID]; exists {
- WalkTree(cli, noTrunc, subimages, byParent, prefix+" ")
- }
- }
- }
- }
- func PrintTreeNode(cli *DockerCli, noTrunc *bool, image APIImages, prefix string) {
- var imageID string
- if *noTrunc {
- imageID = image.ID
- } else {
- imageID = utils.TruncateID(image.ID)
- }
- fmt.Fprintf(cli.out, "%s%s Size: %s (virtual %s)", prefix, imageID, utils.HumanSize(image.Size), utils.HumanSize(image.VirtualSize))
- if image.RepoTags[0] != "<none>:<none>" {
- fmt.Fprintf(cli.out, " Tags: %s\n", strings.Join(image.RepoTags, ", "))
- } else {
- fmt.Fprint(cli.out, "\n")
- }
- }
- func displayablePorts(ports []APIPort) string {
- result := []string{}
- for _, port := range ports {
- if port.IP == "" {
- result = append(result, fmt.Sprintf("%d/%s", port.PublicPort, port.Type))
- } else {
- result = append(result, fmt.Sprintf("%s:%d->%d/%s", port.IP, port.PublicPort, port.PrivatePort, port.Type))
- }
- }
- sort.Strings(result)
- return strings.Join(result, ", ")
- }
- func (cli *DockerCli) CmdPs(args ...string) error {
- cmd := cli.Subcmd("ps", "[OPTIONS]", "List containers")
- quiet := cmd.Bool("q", false, "Only display numeric IDs")
- size := cmd.Bool("s", false, "Display sizes")
- 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)
- }
- if *size {
- v.Set("size", "1")
- }
- 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(cli.out, 20, 1, 3, ' ', 0)
- if !*quiet {
- fmt.Fprint(w, "CONTAINER ID\tIMAGE\tCOMMAND\tCREATED\tSTATUS\tPORTS\tNAMES")
- if *size {
- fmt.Fprintln(w, "\tSIZE")
- } else {
- fmt.Fprint(w, "\n")
- }
- }
- for _, out := range outs {
- if !*noTrunc {
- out.ID = utils.TruncateID(out.ID)
- }
- // Remove the leading / from the names
- for i := 0; i < len(out.Names); i++ {
- out.Names[i] = out.Names[i][1:]
- }
- if !*quiet {
- if !*noTrunc {
- out.Command = utils.Trunc(out.Command, 20)
- }
- fmt.Fprintf(w, "%s\t%s\t%s\t%s ago\t%s\t%s\t%s\t", out.ID, out.Image, out.Command, utils.HumanDuration(time.Now().Sub(time.Unix(out.Created, 0))), out.Status, displayablePorts(out.Ports), strings.Join(out.Names, ","))
- if *size {
- 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 {
- fmt.Fprint(w, "\n")
- }
- } else {
- fmt.Fprintln(w, out.ID)
- }
- }
- if !*quiet {
- w.Flush()
- }
- return nil
- }
- func (cli *DockerCli) CmdCommit(args ...string) error {
- cmd := cli.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
- }
- var name, repository, tag string
- if cmd.NArg() == 3 {
- fmt.Fprintf(cli.err, "[DEPRECATED] The format 'CONTAINER [REPOSITORY [TAG]]' as been deprecated. Please use CONTAINER [REPOSITORY[:TAG]]\n")
- name, repository, tag = cmd.Arg(0), cmd.Arg(1), cmd.Arg(2)
- } else {
- name = cmd.Arg(0)
- repository, tag = utils.ParseRepositoryTag(cmd.Arg(1))
- }
- 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.Fprintf(cli.out, "%s\n", apiID.ID)
- return nil
- }
- func (cli *DockerCli) CmdEvents(args ...string) error {
- cmd := cli.Subcmd("events", "[OPTIONS]", "Get real time events from the server")
- since := cmd.String("since", "", "Show previously created events and then stream.")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 0 {
- cmd.Usage()
- return nil
- }
- v := url.Values{}
- if *since != "" {
- loc := time.FixedZone(time.Now().Zone())
- format := "2006-01-02 15:04:05 -0700 MST"
- if len(*since) < len(format) {
- format = format[:len(*since)]
- }
- if t, err := time.ParseInLocation(format, *since, loc); err == nil {
- v.Set("since", strconv.FormatInt(t.Unix(), 10))
- } else {
- v.Set("since", *since)
- }
- }
- if err := cli.stream("GET", "/events?"+v.Encode(), nil, cli.out, nil); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdExport(args ...string) error {
- cmd := cli.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, cli.out, nil); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdDiff(args ...string) error {
- cmd := cli.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.Fprintf(cli.out, "%s\n", change.String())
- }
- return nil
- }
- func (cli *DockerCli) CmdLogs(args ...string) error {
- cmd := cli.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
- }
- name := cmd.Arg(0)
- body, _, err := cli.call("GET", "/containers/"+name+"/json", nil)
- if err != nil {
- return err
- }
- container := &Container{}
- err = json.Unmarshal(body, container)
- if err != nil {
- return err
- }
- if err := cli.hijack("POST", "/containers/"+name+"/attach?logs=1&stdout=1&stderr=1", container.Config.Tty, nil, cli.out, cli.err, nil); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdAttach(args ...string) error {
- cmd := cli.Subcmd("attach", "[OPTIONS] CONTAINER", "Attach to a running container")
- noStdin := cmd.Bool("nostdin", false, "Do not attach stdin")
- proxy := cmd.Bool("sig-proxy", true, "Proxify all received signal to the process (even in non-tty mode)")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 1 {
- cmd.Usage()
- return nil
- }
- name := cmd.Arg(0)
- body, _, err := cli.call("GET", "/containers/"+name+"/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.isTerminal {
- if err := cli.monitorTtySize(cmd.Arg(0)); err != nil {
- utils.Debugf("Error monitoring TTY size: %s", err)
- }
- }
- var in io.ReadCloser
- v := url.Values{}
- v.Set("stream", "1")
- if !*noStdin && container.Config.OpenStdin {
- v.Set("stdin", "1")
- in = cli.in
- }
- v.Set("stdout", "1")
- v.Set("stderr", "1")
- if *proxy && !container.Config.Tty {
- sigc := cli.forwardAllSignals(cmd.Arg(0))
- defer utils.StopCatch(sigc)
- }
- if err := cli.hijack("POST", "/containers/"+cmd.Arg(0)+"/attach?"+v.Encode(), container.Config.Tty, in, cli.out, cli.err, nil); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdSearch(args ...string) error {
- cmd := cli.Subcmd("search", "TERM", "Search the docker index for images")
- noTrunc := cmd.Bool("notrunc", false, "Don't truncate output")
- trusted := cmd.Bool("trusted", false, "Only show trusted builds")
- stars := cmd.Int("stars", 0, "Only displays with at least xxx stars")
- 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 := []registry.SearchResult{}
- err = json.Unmarshal(body, &outs)
- if err != nil {
- return err
- }
- w := tabwriter.NewWriter(cli.out, 10, 1, 3, ' ', 0)
- fmt.Fprintf(w, "NAME\tDESCRIPTION\tSTARS\tOFFICIAL\tTRUSTED\n")
- for _, out := range outs {
- if (*trusted && !out.IsTrusted) || (*stars > out.StarCount) {
- continue
- }
- desc := strings.Replace(out.Description, "\n", " ", -1)
- desc = strings.Replace(desc, "\r", " ", -1)
- if !*noTrunc && len(desc) > 45 {
- desc = utils.Trunc(desc, 42) + "..."
- }
- fmt.Fprintf(w, "%s\t%s\t%d\t", out.Name, desc, out.StarCount)
- if out.IsOfficial {
- fmt.Fprint(w, "[OK]")
- }
- fmt.Fprint(w, "\t")
- if out.IsTrusted {
- fmt.Fprint(w, "[OK]")
- }
- fmt.Fprint(w, "\n")
- }
- w.Flush()
- return nil
- }
- // Ports type - Used to parse multiple -p flags
- type ports []int
- // 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 {
- var containerPath string
- splited := strings.SplitN(val, ":", 2)
- if len(splited) == 1 {
- containerPath = splited[0]
- val = filepath.Clean(splited[0])
- } else {
- containerPath = splited[1]
- val = fmt.Sprintf("%s:%s", splited[0], filepath.Clean(splited[1]))
- }
- if !filepath.IsAbs(containerPath) {
- utils.Debugf("%s is not an absolute path", containerPath)
- return fmt.Errorf("%s is not an absolute path", containerPath)
- }
- opts[val] = struct{}{}
- return nil
- }
- func (cli *DockerCli) CmdTag(args ...string) error {
- cmd := cli.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
- }
- var repository, tag string
- if cmd.NArg() == 3 {
- fmt.Fprintf(cli.err, "[DEPRECATED] The format 'IMAGE [REPOSITORY [TAG]]' as been deprecated. Please use IMAGE [REPOSITORY[:TAG]]\n")
- repository, tag = cmd.Arg(1), cmd.Arg(2)
- } else {
- repository, tag = utils.ParseRepositoryTag(cmd.Arg(1))
- }
- v := url.Values{}
- v.Set("repo", repository)
- v.Set("tag", tag)
- 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
- }
- //FIXME Only used in tests
- func ParseRun(args []string, capabilities *Capabilities) (*Config, *HostConfig, *flag.FlagSet, error) {
- cmd := flag.NewFlagSet("run", flag.ContinueOnError)
- cmd.SetOutput(ioutil.Discard)
- cmd.Usage = nil
- return parseRun(cmd, args, capabilities)
- }
- func parseRun(cmd *flag.FlagSet, args []string, capabilities *Capabilities) (*Config, *HostConfig, *flag.FlagSet, error) {
- flHostname := cmd.String("h", "", "Container host name")
- flWorkingDir := cmd.String("w", "", "Working directory inside the container")
- flUser := cmd.String("u", "", "Username or UID")
- flDetach := cmd.Bool("d", false, "Detached mode: Run container in the background, print new container id")
- flAttach := NewAttachOpts()
- cmd.Var(flAttach, "a", "Attach to stdin, stdout or stderr.")
- flStdin := cmd.Bool("i", false, "Keep stdin open even if not attached")
- flTty := cmd.Bool("t", false, "Allocate a pseudo-tty")
- flMemoryString := cmd.String("m", "", "Memory limit (format: <number><optional unit>, where unit = b, k, m or g)")
- flContainerIDFile := cmd.String("cidfile", "", "Write the container ID to the file")
- flNetwork := cmd.Bool("n", true, "Enable networking for this container")
- flPrivileged := cmd.Bool("privileged", false, "Give extended privileges to this container")
- flAutoRemove := cmd.Bool("rm", false, "Automatically remove the container when it exits (incompatible with -d)")
- cmd.Bool("sig-proxy", true, "Proxify all received signal to the process (even in non-tty mode)")
- cmd.String("name", "", "Assign a name to the container")
- flPublishAll := cmd.Bool("P", false, "Publish all exposed ports to the host interfaces")
- if capabilities != nil && *flMemoryString != "" && !capabilities.MemoryLimit {
- //fmt.Fprintf(stdout, "WARNING: Your kernel does not support memory limit capabilities. Limitation discarded.\n")
- *flMemoryString = ""
- }
- flCpuShares := cmd.Int64("c", 0, "CPU shares (relative weight)")
- var flPublish utils.ListOpts
- cmd.Var(&flPublish, "p", "Publish a container's port to the host (use 'docker port' to see the actual mapping)")
- var flExpose utils.ListOpts
- cmd.Var(&flExpose, "expose", "Expose a port from the container without publishing it to your host")
- var flEnv utils.ListOpts
- cmd.Var(&flEnv, "e", "Set environment variables")
- var flDns utils.ListOpts
- cmd.Var(&flDns, "dns", "Set custom dns servers")
- flVolumes := NewPathOpts()
- cmd.Var(flVolumes, "v", "Bind mount a volume (e.g. from the host: -v /host:/container, from docker: -v /container)")
- var flVolumesFrom utils.ListOpts
- cmd.Var(&flVolumesFrom, "volumes-from", "Mount volumes from the specified container(s)")
- flEntrypoint := cmd.String("entrypoint", "", "Overwrite the default entrypoint of the image")
- var flLxcOpts utils.ListOpts
- cmd.Var(&flLxcOpts, "lxc-conf", "Add custom lxc options -lxc-conf=\"lxc.cgroup.cpuset.cpus = 0,1\"")
- var flLinks utils.ListOpts
- cmd.Var(&flLinks, "link", "Add link to another container (name:alias)")
- if err := cmd.Parse(args); err != nil {
- return nil, nil, cmd, err
- }
- if *flDetach && len(flAttach) > 0 {
- return nil, nil, cmd, ErrConflictAttachDetach
- }
- if *flWorkingDir != "" && !path.IsAbs(*flWorkingDir) {
- return nil, nil, cmd, ErrInvalidWorikingDirectory
- }
- if *flDetach && *flAutoRemove {
- return nil, nil, cmd, ErrConflictDetachAutoRemove
- }
- // If neither -d or -a are set, attach to everything by default
- if len(flAttach) == 0 && !*flDetach {
- if !*flDetach {
- flAttach.Set("stdout")
- flAttach.Set("stderr")
- if *flStdin {
- flAttach.Set("stdin")
- }
- }
- }
- envs := []string{}
- for _, env := range flEnv {
- arr := strings.Split(env, "=")
- if len(arr) > 1 {
- envs = append(envs, env)
- } else {
- v := os.Getenv(env)
- envs = append(envs, env+"="+v)
- }
- }
- var flMemory int64
- if *flMemoryString != "" {
- parsedMemory, err := utils.RAMInBytes(*flMemoryString)
- if err != nil {
- return nil, nil, cmd, err
- }
- flMemory = parsedMemory
- }
- var binds []string
- // add any bind targets to the list of container volumes
- for bind := range flVolumes {
- arr := strings.Split(bind, ":")
- if len(arr) > 1 {
- if arr[0] == "/" {
- return nil, nil, cmd, fmt.Errorf("Invalid bind mount: source can't be '/'")
- }
- dstDir := arr[1]
- flVolumes[dstDir] = struct{}{}
- binds = append(binds, bind)
- delete(flVolumes, bind)
- }
- }
- parsedArgs := cmd.Args()
- runCmd := []string{}
- entrypoint := []string{}
- image := ""
- if len(parsedArgs) >= 1 {
- image = cmd.Arg(0)
- }
- if len(parsedArgs) > 1 {
- runCmd = parsedArgs[1:]
- }
- if *flEntrypoint != "" {
- entrypoint = []string{*flEntrypoint}
- }
- var lxcConf []KeyValuePair
- lxcConf, err := parseLxcConfOpts(flLxcOpts)
- if err != nil {
- return nil, nil, cmd, err
- }
- hostname := *flHostname
- domainname := ""
- parts := strings.SplitN(hostname, ".", 2)
- if len(parts) > 1 {
- hostname = parts[0]
- domainname = parts[1]
- }
- ports, portBindings, err := parsePortSpecs(flPublish)
- if err != nil {
- return nil, nil, cmd, err
- }
- // Merge in exposed ports to the map of published ports
- for _, e := range flExpose {
- if strings.Contains(e, ":") {
- return nil, nil, cmd, fmt.Errorf("Invalid port format for -expose: %s", e)
- }
- p := NewPort(splitProtoPort(e))
- if _, exists := ports[p]; !exists {
- ports[p] = struct{}{}
- }
- }
- config := &Config{
- Hostname: hostname,
- Domainname: domainname,
- PortSpecs: nil, // Deprecated
- ExposedPorts: ports,
- User: *flUser,
- Tty: *flTty,
- NetworkDisabled: !*flNetwork,
- OpenStdin: *flStdin,
- Memory: flMemory,
- CpuShares: *flCpuShares,
- AttachStdin: flAttach.Get("stdin"),
- AttachStdout: flAttach.Get("stdout"),
- AttachStderr: flAttach.Get("stderr"),
- Env: envs,
- Cmd: runCmd,
- Dns: flDns,
- Image: image,
- Volumes: flVolumes,
- VolumesFrom: strings.Join(flVolumesFrom, ","),
- Entrypoint: entrypoint,
- WorkingDir: *flWorkingDir,
- }
- hostConfig := &HostConfig{
- Binds: binds,
- ContainerIDFile: *flContainerIDFile,
- LxcConf: lxcConf,
- Privileged: *flPrivileged,
- PortBindings: portBindings,
- Links: flLinks,
- PublishAllPorts: *flPublishAll,
- }
- if capabilities != nil && flMemory > 0 && !capabilities.SwapLimit {
- //fmt.Fprintf(stdout, "WARNING: Your kernel does not support swap limit capabilities. Limitation discarded.\n")
- config.MemorySwap = -1
- }
- // When allocating stdin in attached mode, close stdin at client disconnect
- if config.OpenStdin && config.AttachStdin {
- config.StdinOnce = true
- }
- return config, hostConfig, cmd, nil
- }
- func (cli *DockerCli) CmdRun(args ...string) error {
- config, hostConfig, cmd, err := parseRun(cli.Subcmd("run", "[OPTIONS] IMAGE [COMMAND] [ARG...]", "Run a command in a new container"), args, nil)
- if err != nil {
- return err
- }
- if config.Image == "" {
- cmd.Usage()
- return nil
- }
- flRm := cmd.Lookup("rm")
- autoRemove, _ := strconv.ParseBool(flRm.Value.String())
- flSigProxy := cmd.Lookup("sig-proxy")
- sigProxy, _ := strconv.ParseBool(flSigProxy.Value.String())
- flName := cmd.Lookup("name")
- if config.Tty {
- sigProxy = false
- }
- var containerIDFile *os.File
- if len(hostConfig.ContainerIDFile) > 0 {
- if _, err := ioutil.ReadFile(hostConfig.ContainerIDFile); err == nil {
- return fmt.Errorf("cid file found, make sure the other container isn't running or delete %s", hostConfig.ContainerIDFile)
- }
- containerIDFile, err = os.Create(hostConfig.ContainerIDFile)
- if err != nil {
- return fmt.Errorf("failed to create the container ID file: %s", err)
- }
- defer containerIDFile.Close()
- }
- containerValues := url.Values{}
- name := flName.Value.String()
- if name != "" {
- containerValues.Set("name", name)
- }
- //create the container
- body, statusCode, err := cli.call("POST", "/containers/create?"+containerValues.Encode(), config)
- //if image not found try to pull it
- if statusCode == 404 {
- _, tag := utils.ParseRepositoryTag(config.Image)
- if tag == "" {
- tag = DEFAULTTAG
- }
- fmt.Fprintf(cli.err, "Unable to find image '%s' (tag: %s) locally\n", config.Image, tag)
- v := url.Values{}
- repos, tag := utils.ParseRepositoryTag(config.Image)
- v.Set("fromImage", repos)
- v.Set("tag", tag)
- // Resolve the Repository name from fqn to endpoint + name
- var endpoint string
- endpoint, _, err = registry.ResolveRepositoryName(repos)
- if err != nil {
- return err
- }
- // Load the auth config file, to be able to pull the image
- cli.LoadConfigFile()
- // Resolve the Auth config relevant for this server
- authConfig := cli.configFile.ResolveAuthConfig(endpoint)
- buf, err := json.Marshal(authConfig)
- if err != nil {
- return err
- }
- registryAuthHeader := []string{
- base64.URLEncoding.EncodeToString(buf),
- }
- err = cli.stream("POST", "/images/create?"+v.Encode(), nil, cli.err, map[string][]string{
- "X-Registry-Auth": registryAuthHeader,
- })
- if err != nil {
- return err
- }
- body, _, err = cli.call("POST", "/containers/create?"+containerValues.Encode(), config)
- if err != nil {
- return err
- }
- }
- if err != nil {
- return err
- }
- runResult := &APIRun{}
- err = json.Unmarshal(body, runResult)
- if err != nil {
- return err
- }
- for _, warning := range runResult.Warnings {
- fmt.Fprintf(cli.err, "WARNING: %s\n", warning)
- }
- if len(hostConfig.ContainerIDFile) > 0 {
- if _, err = containerIDFile.WriteString(runResult.ID); err != nil {
- return fmt.Errorf("failed to write the container ID to the file: %s", err)
- }
- }
- if sigProxy {
- sigc := cli.forwardAllSignals(runResult.ID)
- defer utils.StopCatch(sigc)
- }
- var (
- wait chan struct{}
- errCh chan error
- )
- if !config.AttachStdout && !config.AttachStderr {
- // Make this asynchrone in order to let the client write to stdin before having to read the ID
- wait = make(chan struct{})
- go func() {
- defer close(wait)
- fmt.Fprintf(cli.out, "%s\n", runResult.ID)
- }()
- }
- hijacked := make(chan bool)
- if config.AttachStdin || config.AttachStdout || config.AttachStderr {
- v := url.Values{}
- v.Set("stream", "1")
- var out, stderr io.Writer
- var in io.ReadCloser
- if config.AttachStdin {
- v.Set("stdin", "1")
- in = cli.in
- }
- if config.AttachStdout {
- v.Set("stdout", "1")
- out = cli.out
- }
- if config.AttachStderr {
- v.Set("stderr", "1")
- if config.Tty {
- stderr = cli.out
- } else {
- stderr = cli.err
- }
- }
- errCh = utils.Go(func() error {
- return cli.hijack("POST", "/containers/"+runResult.ID+"/attach?"+v.Encode(), config.Tty, in, out, stderr, hijacked)
- })
- } else {
- close(hijacked)
- }
- // Acknowledge the hijack before starting
- select {
- case <-hijacked:
- case err := <-errCh:
- if err != nil {
- utils.Debugf("Error hijack: %s", err)
- return err
- }
- }
- //start the container
- if _, _, err = cli.call("POST", "/containers/"+runResult.ID+"/start", hostConfig); err != nil {
- return err
- }
- if (config.AttachStdin || config.AttachStdout || config.AttachStderr) && config.Tty && cli.isTerminal {
- if err := cli.monitorTtySize(runResult.ID); err != nil {
- utils.Errorf("Error monitoring TTY size: %s\n", err)
- }
- }
- if errCh != nil {
- if err := <-errCh; err != nil {
- utils.Debugf("Error hijack: %s", err)
- return err
- }
- }
- if !config.AttachStdout && !config.AttachStderr {
- // Detached mode
- <-wait
- } else {
- running, status, err := getExitCode(cli, runResult.ID)
- if err != nil {
- return err
- }
- if autoRemove {
- if running {
- return fmt.Errorf("Impossible to auto-remove a detached container")
- }
- // Wait for the process to
- if _, _, err := cli.call("POST", "/containers/"+runResult.ID+"/wait", nil); err != nil {
- return err
- }
- if _, _, err := cli.call("DELETE", "/containers/"+runResult.ID, nil); err != nil {
- return err
- }
- }
- if status != 0 {
- return &utils.StatusError{Status: status}
- }
- }
- return nil
- }
- func (cli *DockerCli) CmdCp(args ...string) error {
- cmd := cli.Subcmd("cp", "CONTAINER:PATH HOSTPATH", "Copy files/folders from the PATH to the HOSTPATH")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 2 {
- cmd.Usage()
- return nil
- }
- var copyData APICopy
- info := strings.Split(cmd.Arg(0), ":")
- if len(info) != 2 {
- return fmt.Errorf("Error: Path not specified")
- }
- copyData.Resource = info[1]
- copyData.HostPath = cmd.Arg(1)
- data, statusCode, err := cli.call("POST", "/containers/"+info[0]+"/copy", copyData)
- if err != nil {
- return err
- }
- if statusCode == 200 {
- r := bytes.NewReader(data)
- if err := archive.Untar(r, copyData.HostPath); err != nil {
- return err
- }
- }
- return nil
- }
- func (cli *DockerCli) CmdSave(args ...string) error {
- cmd := cli.Subcmd("save", "IMAGE DESTINATION", "Save an image to a tar archive")
- if err := cmd.Parse(args); err != nil {
- return err
- }
- if cmd.NArg() != 1 {
- cmd.Usage()
- return nil
- }
- image := cmd.Arg(0)
- if err := cli.stream("GET", "/images/"+image+"/get", nil, cli.out, nil); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) CmdLoad(args ...string) error {
- cmd := cli.Subcmd("load", "SOURCE", "Load an image from a tar archive")
- if err := cmd.Parse(args); err != nil {
- return err
- }
- if cmd.NArg() != 0 {
- cmd.Usage()
- return nil
- }
- if err := cli.stream("POST", "/images/load", cli.in, cli.out, nil); err != nil {
- return err
- }
- 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)
- }
- // fixme: refactor client to support redirect
- re := regexp.MustCompile("/+")
- path = re.ReplaceAllString(path, "/")
- 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)
- req.Host = cli.addr
- 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 {
- if strings.Contains(err.Error(), "connection refused") {
- return nil, -1, ErrConnectionRefused
- }
- 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, ErrConnectionRefused
- }
- 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", bytes.TrimSpace(body))
- }
- return body, resp.StatusCode, nil
- }
- func (cli *DockerCli) stream(method, path string, in io.Reader, out io.Writer, headers map[string][]string) error {
- if (method == "POST" || method == "PUT") && in == nil {
- in = bytes.NewReader([]byte{})
- }
- // fixme: refactor client to support redirect
- re := regexp.MustCompile("/+")
- path = re.ReplaceAllString(path, "/")
- 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)
- req.Host = cli.addr
- if method == "POST" {
- req.Header.Set("Content-Type", "plain/text")
- }
- if headers != nil {
- for k, v := range headers {
- req.Header[k] = v
- }
- }
- dial, err := net.Dial(cli.proto, cli.addr)
- 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
- }
- 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", bytes.TrimSpace(body))
- }
- if matchesContentType(resp.Header.Get("Content-Type"), "application/json") {
- return utils.DisplayJSONMessagesStream(resp.Body, out)
- }
- if _, err := io.Copy(out, resp.Body); err != nil {
- return err
- }
- return nil
- }
- func (cli *DockerCli) hijack(method, path string, setRawTerminal bool, in io.ReadCloser, stdout, stderr io.Writer, started chan bool) error {
- // fixme: refactor client to support redirect
- re := regexp.MustCompile("/+")
- path = re.ReplaceAllString(path, "/")
- 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")
- req.Host = cli.addr
- dial, err := net.Dial(cli.proto, cli.addr)
- 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
- }
- 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()
- if started != nil {
- started <- true
- }
- var receiveStdout chan error
- if stdout != nil {
- receiveStdout = utils.Go(func() (err error) {
- // When TTY is ON, use regular copy
- if setRawTerminal {
- _, err = io.Copy(stdout, br)
- } else {
- _, err = utils.StdCopy(stdout, stderr, br)
- }
- utils.Debugf("[hijack] End of stdout")
- return err
- })
- }
- if in != nil && setRawTerminal && cli.isTerminal && os.Getenv("NORAW") == "" {
- oldState, err := term.SetRawTerminal(cli.terminalFd)
- if err != nil {
- return err
- }
- defer term.RestoreTerminal(cli.terminalFd, oldState)
- }
- sendStdin := utils.Go(func() error {
- if in != nil {
- io.Copy(rwc, in)
- utils.Debugf("[hijack] End of stdin")
- }
- if tcpc, ok := rwc.(*net.TCPConn); ok {
- if err := tcpc.CloseWrite(); err != nil {
- utils.Errorf("Couldn't send EOF: %s\n", err)
- }
- } else if unixc, ok := rwc.(*net.UnixConn); ok {
- if err := unixc.CloseWrite(); err != nil {
- utils.Errorf("Couldn't send EOF: %s\n", err)
- }
- }
- // Discard errors due to pipe interruption
- return nil
- })
- if stdout != nil {
- if err := <-receiveStdout; err != nil {
- utils.Errorf("Error receiveStdout: %s", err)
- return err
- }
- }
- if !cli.isTerminal {
- if err := <-sendStdin; err != nil {
- utils.Errorf("Error sendStdin: %s", err)
- return err
- }
- }
- return nil
- }
- func (cli *DockerCli) getTtySize() (int, int) {
- if !cli.isTerminal {
- return 0, 0
- }
- ws, err := term.GetWinsize(cli.terminalFd)
- if err != nil {
- utils.Errorf("Error getting size: %s", err)
- if ws == nil {
- return 0, 0
- }
- }
- return int(ws.Height), int(ws.Width)
- }
- func (cli *DockerCli) resizeTty(id string) {
- height, width := cli.getTtySize()
- if height == 0 && width == 0 {
- return
- }
- v := url.Values{}
- v.Set("h", strconv.Itoa(height))
- v.Set("w", strconv.Itoa(width))
- if _, _, err := cli.call("POST", "/containers/"+id+"/resize?"+v.Encode(), nil); err != nil {
- utils.Errorf("Error resize: %s", err)
- }
- }
- func (cli *DockerCli) monitorTtySize(id string) error {
- cli.resizeTty(id)
- sigchan := make(chan os.Signal, 1)
- signal.Notify(sigchan, syscall.SIGWINCH)
- go func() {
- for _ = range sigchan {
- cli.resizeTty(id)
- }
- }()
- return nil
- }
- func (cli *DockerCli) Subcmd(name, signature, description string) *flag.FlagSet {
- flags := flag.NewFlagSet(name, flag.ContinueOnError)
- flags.Usage = func() {
- fmt.Fprintf(cli.err, "\nUsage: docker %s %s\n\n%s\n\n", name, signature, description)
- flags.PrintDefaults()
- os.Exit(2)
- }
- return flags
- }
- func (cli *DockerCli) LoadConfigFile() (err error) {
- cli.configFile, err = auth.LoadConfig(os.Getenv("HOME"))
- if err != nil {
- fmt.Fprintf(cli.err, "WARNING: %s\n", err)
- }
- return err
- }
- func waitForExit(cli *DockerCli, containerId string) (int, error) {
- body, _, err := cli.call("POST", "/containers/"+containerId+"/wait", nil)
- if err != nil {
- // If we can't connect, then the daemon probably died.
- if err != ErrConnectionRefused {
- return -1, err
- }
- return -1, nil
- }
- var out APIWait
- if err := json.Unmarshal(body, &out); err != nil {
- return -1, err
- }
- return out.StatusCode, nil
- }
- // getExitCode perform an inspect on the container. It returns
- // the running state and the exit code.
- func getExitCode(cli *DockerCli, containerId string) (bool, int, error) {
- body, _, err := cli.call("GET", "/containers/"+containerId+"/json", nil)
- if err != nil {
- // If we can't connect, then the daemon probably died.
- if err != ErrConnectionRefused {
- return false, -1, err
- }
- return false, -1, nil
- }
- c := &Container{}
- if err := json.Unmarshal(body, c); err != nil {
- return false, -1, err
- }
- return c.State.Running, c.State.ExitCode, nil
- }
- func NewDockerCli(in io.ReadCloser, out, err io.Writer, proto, addr string) *DockerCli {
- var (
- isTerminal = false
- terminalFd uintptr
- )
- if in != nil {
- if file, ok := in.(*os.File); ok {
- terminalFd = file.Fd()
- isTerminal = term.IsTerminal(terminalFd)
- }
- }
- if err == nil {
- err = out
- }
- return &DockerCli{
- proto: proto,
- addr: addr,
- in: in,
- out: out,
- err: err,
- isTerminal: isTerminal,
- terminalFd: terminalFd,
- }
- }
- type DockerCli struct {
- proto string
- addr string
- configFile *auth.ConfigFile
- in io.ReadCloser
- out io.Writer
- err io.Writer
- isTerminal bool
- terminalFd uintptr
- }
|