123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977 |
- package commands
- import (
- "bufio"
- "bytes"
- "encoding/json"
- "errors"
- "fmt"
- "github.com/dotcloud/docker"
- "github.com/dotcloud/docker/fs"
- "github.com/dotcloud/docker/future"
- "github.com/dotcloud/docker/rcli"
- "io"
- "net/http"
- "net/url"
- "os"
- "path"
- "strconv"
- "strings"
- "sync"
- "text/tabwriter"
- "time"
- )
- const VERSION = "0.0.1"
- func (srv *Server) Name() string {
- return "docker"
- }
- // FIXME: Stop violating DRY by repeating usage here and in Subcmd declarations
- func (srv *Server) Help() string {
- help := "Usage: docker COMMAND [arg...]\n\nA self-sufficient runtime for linux containers.\n\nCommands:\n"
- for _, cmd := range [][]interface{}{
- {"run", "Run a command in a container"},
- {"ps", "Display a list of containers"},
- {"import", "Create a new filesystem image from the contents of a tarball"},
- {"attach", "Attach to a running container"},
- {"cat", "Write the contents of a container's file to standard output"},
- {"commit", "Create a new image from a container's changes"},
- {"cp", "Create a copy of IMAGE and call it NAME"},
- {"debug", "(debug only) (No documentation available)"},
- {"diff", "Inspect changes on a container's filesystem"},
- {"images", "List images"},
- {"info", "Display system-wide information"},
- {"inspect", "Return low-level information on a container"},
- {"kill", "Kill a running container"},
- {"layers", "(debug only) List filesystem layers"},
- {"logs", "Fetch the logs of a container"},
- {"ls", "List the contents of a container's directory"},
- {"mirror", "(debug only) (No documentation available)"},
- {"port", "Lookup the public-facing port which is NAT-ed to PRIVATE_PORT"},
- {"ps", "List containers"},
- {"reset", "Reset changes to a container's filesystem"},
- {"restart", "Restart a running container"},
- {"rm", "Remove a container"},
- {"rmimage", "Remove an image"},
- {"run", "Run a command in a new container"},
- {"start", "Start a stopped container"},
- {"stop", "Stop a running container"},
- {"tar", "Stream the contents of a container as a tar archive"},
- {"umount", "(debug only) Mount a container's filesystem"},
- {"version", "Show the docker version information"},
- {"wait", "Block until a container stops, then print its exit code"},
- {"web", "A web UI for docker"},
- {"write", "Write the contents of standard input to a container's file"},
- } {
- help += fmt.Sprintf(" %-10.10s%s\n", cmd...)
- }
- return help
- }
- // 'docker wait': block until a container stops
- func (srv *Server) CmdWait(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "wait", "[OPTIONS] NAME", "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() {
- if container := srv.containers.Get(name); container != nil {
- fmt.Fprintln(stdout, container.Wait())
- } else {
- return errors.New("No such container: " + name)
- }
- }
- return nil
- }
- // 'docker version': show version information
- func (srv *Server) CmdVersion(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- fmt.Fprintf(stdout, "Version:%s\n", VERSION)
- return nil
- }
- // 'docker info': display system-wide information.
- func (srv *Server) CmdInfo(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- images, _ := srv.images.Images()
- var imgcount int
- if images == nil {
- imgcount = 0
- } else {
- imgcount = len(images)
- }
- cmd := rcli.Subcmd(stdout, "info", "", "Display system-wide information.")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() > 0 {
- cmd.Usage()
- return nil
- }
- fmt.Fprintf(stdout, "containers: %d\nversion: %s\nimages: %d\n",
- len(srv.containers.List()),
- VERSION,
- imgcount)
- return nil
- }
- func (srv *Server) CmdStop(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "stop", "[OPTIONS] NAME", "Stop a running container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- for _, name := range cmd.Args() {
- if container := srv.containers.Get(name); container != nil {
- if err := container.Stop(); err != nil {
- return err
- }
- fmt.Fprintln(stdout, container.Id)
- } else {
- return errors.New("No such container: " + name)
- }
- }
- return nil
- }
- func (srv *Server) CmdRestart(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "restart", "[OPTIONS] NAME", "Restart a running container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- for _, name := range cmd.Args() {
- if container := srv.containers.Get(name); container != nil {
- if err := container.Restart(); err != nil {
- return err
- }
- fmt.Fprintln(stdout, container.Id)
- } else {
- return errors.New("No such container: " + name)
- }
- }
- return nil
- }
- func (srv *Server) CmdStart(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "start", "[OPTIONS] NAME", "Start a stopped container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- for _, name := range cmd.Args() {
- if container := srv.containers.Get(name); container != nil {
- if err := container.Start(); err != nil {
- return err
- }
- fmt.Fprintln(stdout, container.Id)
- } else {
- return errors.New("No such container: " + name)
- }
- }
- return nil
- }
- func (srv *Server) CmdUmount(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "umount", "[OPTIONS] NAME", "umount a container's filesystem (debug only)")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- for _, name := range cmd.Args() {
- if container := srv.containers.Get(name); container != nil {
- if err := container.Mountpoint.Umount(); err != nil {
- return err
- }
- fmt.Fprintln(stdout, container.Id)
- } else {
- return errors.New("No such container: " + name)
- }
- }
- return nil
- }
- func (srv *Server) CmdMount(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "umount", "[OPTIONS] NAME", "mount a container's filesystem (debug only)")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- for _, name := range cmd.Args() {
- if container := srv.containers.Get(name); container != nil {
- if err := container.Mountpoint.EnsureMounted(); err != nil {
- return err
- }
- fmt.Fprintln(stdout, container.Id)
- } else {
- return errors.New("No such container: " + name)
- }
- }
- return nil
- }
- func (srv *Server) CmdCat(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "cat", "[OPTIONS] CONTAINER PATH", "write the contents of a container's file to standard output")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 2 {
- cmd.Usage()
- return nil
- }
- name, path := cmd.Arg(0), cmd.Arg(1)
- if container := srv.containers.Get(name); container != nil {
- if f, err := container.Mountpoint.OpenFile(path, os.O_RDONLY, 0); err != nil {
- return err
- } else if _, err := io.Copy(stdout, f); err != nil {
- return err
- }
- return nil
- }
- return errors.New("No such container: " + name)
- }
- func (srv *Server) CmdWrite(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "write", "[OPTIONS] CONTAINER PATH", "write the contents of standard input to a container's file")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 2 {
- cmd.Usage()
- return nil
- }
- name, path := cmd.Arg(0), cmd.Arg(1)
- if container := srv.containers.Get(name); container != nil {
- if f, err := container.Mountpoint.OpenFile(path, os.O_WRONLY|os.O_CREATE, 0600); err != nil {
- return err
- } else if _, err := io.Copy(f, stdin); err != nil {
- return err
- }
- return nil
- }
- return errors.New("No such container: " + name)
- }
- func (srv *Server) CmdLs(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "ls", "[OPTIONS] CONTAINER PATH", "List the contents of a container's directory")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 2 {
- cmd.Usage()
- return nil
- }
- name, path := cmd.Arg(0), cmd.Arg(1)
- if container := srv.containers.Get(name); container != nil {
- if files, err := container.Mountpoint.ReadDir(path); err != nil {
- return err
- } else {
- for _, f := range files {
- fmt.Fprintln(stdout, f.Name())
- }
- }
- return nil
- }
- return errors.New("No such container: " + name)
- }
- func (srv *Server) CmdInspect(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "inspect", "[OPTIONS] CONTAINER", "Return low-level information on a container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- name := cmd.Arg(0)
- var obj interface{}
- if container := srv.containers.Get(name); container != nil {
- obj = container
- //} else if image, err := srv.images.List(name); image != nil {
- // obj = image
- } else {
- return errors.New("No such container or image: " + name)
- }
- data, err := json.Marshal(obj)
- if err != nil {
- return err
- }
- indented := new(bytes.Buffer)
- if err = json.Indent(indented, data, "", " "); err != nil {
- return err
- }
- if _, err := io.Copy(stdout, indented); err != nil {
- return err
- }
- return nil
- }
- func (srv *Server) CmdPort(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "port", "[OPTIONS] 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
- }
- name := cmd.Arg(0)
- privatePort := cmd.Arg(1)
- if container := srv.containers.Get(name); container == nil {
- return errors.New("No such container: " + name)
- } else {
- if frontend, exists := container.NetworkSettings.PortMapping[privatePort]; !exists {
- return fmt.Errorf("No private port '%s' allocated on %s", privatePort, name)
- } else {
- fmt.Fprintln(stdout, frontend)
- }
- }
- return nil
- }
- // 'docker rmi NAME' removes all images with the name NAME
- // func (srv *Server) CmdRmi(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- // cmd := rcli.Subcmd(stdout, "rmimage", "[OPTIONS] IMAGE", "Remove an image")
- // fl_regexp := cmd.Bool("r", false, "Use IMAGE as a regular expression instead of an exact name")
- // if err := cmd.Parse(args); err != nil {
- // cmd.Usage()
- // return nil
- // }
- // if cmd.NArg() < 1 {
- // cmd.Usage()
- // return nil
- // }
- // for _, name := range cmd.Args() {
- // var err error
- // if *fl_regexp {
- // err = srv.images.DeleteMatch(name)
- // } else {
- // image := srv.images.Find(name)
- // if image == nil {
- // return errors.New("No such image: " + name)
- // }
- // err = srv.images.Delete(name)
- // }
- // if err != nil {
- // return err
- // }
- // }
- // return nil
- // }
- func (srv *Server) CmdRm(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "rm", "[OPTIONS] CONTAINER", "Remove a container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- for _, name := range cmd.Args() {
- container := srv.containers.Get(name)
- if container == nil {
- return errors.New("No such container: " + name)
- }
- if err := srv.containers.Destroy(container); err != nil {
- fmt.Fprintln(stdout, "Error destroying container "+name+": "+err.Error())
- }
- }
- return nil
- }
- // 'docker kill NAME' kills a running container
- func (srv *Server) CmdKill(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "kill", "[OPTIONS] CONTAINER [CONTAINER...]", "Kill a running container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- for _, name := range cmd.Args() {
- container := srv.containers.Get(name)
- if container == nil {
- return errors.New("No such container: " + name)
- }
- if err := container.Kill(); err != nil {
- fmt.Fprintln(stdout, "Error killing container "+name+": "+err.Error())
- }
- }
- return nil
- }
- func (srv *Server) CmdImport(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "import", "[OPTIONS] NAME", "Create a new filesystem image from the contents of a tarball")
- fl_stdin := cmd.Bool("stdin", false, "Read tarball from stdin")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- var archive io.Reader
- name := cmd.Arg(0)
- if name == "" {
- return errors.New("Not enough arguments")
- }
- if *fl_stdin {
- archive = stdin
- } else {
- u, err := url.Parse(name)
- if err != nil {
- return err
- }
- if u.Scheme == "" {
- u.Scheme = "http"
- }
- // FIXME: hardcode a mirror URL that does not depend on a single provider.
- if u.Host == "" {
- u.Host = "s3.amazonaws.com"
- u.Path = path.Join("/docker.io/images", u.Path)
- }
- fmt.Fprintf(stdout, "Downloading from %s\n", u.String())
- // Download with curl (pretty progress bar)
- // If curl is not available, fallback to http.Get()
- archive, err = future.Curl(u.String(), stdout)
- if err != nil {
- if resp, err := http.Get(u.String()); err != nil {
- return err
- } else {
- archive = resp.Body
- }
- }
- }
- fmt.Fprintf(stdout, "Unpacking to %s\n", name)
- img, err := srv.images.Create(archive, nil, name, "")
- if err != nil {
- return err
- }
- fmt.Fprintln(stdout, img.Id)
- return nil
- }
- func (srv *Server) CmdImages(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "images", "[OPTIONS] [NAME]", "List images")
- limit := cmd.Int("l", 0, "Only show the N most recent versions of each image")
- quiet := cmd.Bool("q", false, "only show numeric IDs")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() > 1 {
- cmd.Usage()
- return nil
- }
- var nameFilter string
- if cmd.NArg() == 1 {
- nameFilter = cmd.Arg(0)
- }
- w := tabwriter.NewWriter(stdout, 20, 1, 3, ' ', 0)
- if !*quiet {
- fmt.Fprintf(w, "NAME\tID\tCREATED\tPARENT\n")
- }
- paths, err := srv.images.Paths()
- if err != nil {
- return err
- }
- for _, name := range paths {
- if nameFilter != "" && nameFilter != name {
- continue
- }
- ids, err := srv.images.List(name)
- if err != nil {
- return err
- }
- for idx, img := range ids {
- if *limit > 0 && idx >= *limit {
- break
- }
- if !*quiet {
- for idx, field := range []string{
- /* NAME */ name,
- /* ID */ img.Id,
- /* CREATED */ future.HumanDuration(time.Now().Sub(time.Unix(img.Created, 0))) + " ago",
- /* PARENT */ img.Parent,
- } {
- if idx == 0 {
- w.Write([]byte(field))
- } else {
- w.Write([]byte("\t" + field))
- }
- }
- w.Write([]byte{'\n'})
- } else {
- stdout.Write([]byte(img.Id + "\n"))
- }
- }
- }
- if !*quiet {
- w.Flush()
- }
- return nil
- }
- func (srv *Server) CmdPs(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout,
- "ps", "[OPTIONS]", "List containers")
- quiet := cmd.Bool("q", false, "Only display numeric IDs")
- fl_all := cmd.Bool("a", false, "Show all containers. Only running containers are shown by default.")
- fl_full := cmd.Bool("notrunc", false, "Don't truncate output")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- w := tabwriter.NewWriter(stdout, 12, 1, 3, ' ', 0)
- if !*quiet {
- fmt.Fprintf(w, "ID\tIMAGE\tCOMMAND\tCREATED\tSTATUS\tCOMMENT\n")
- }
- for _, container := range srv.containers.List() {
- comment := container.GetUserData("comment")
- if !container.State.Running && !*fl_all {
- continue
- }
- if !*quiet {
- command := fmt.Sprintf("%s %s", container.Path, strings.Join(container.Args, " "))
- if !*fl_full {
- command = docker.Trunc(command, 20)
- }
- for idx, field := range []string{
- /* ID */ container.Id,
- /* IMAGE */ container.GetUserData("image"),
- /* COMMAND */ command,
- /* CREATED */ future.HumanDuration(time.Now().Sub(container.Created)) + " ago",
- /* STATUS */ container.State.String(),
- /* COMMENT */ comment,
- } {
- if idx == 0 {
- w.Write([]byte(field))
- } else {
- w.Write([]byte("\t" + field))
- }
- }
- w.Write([]byte{'\n'})
- } else {
- stdout.Write([]byte(container.Id + "\n"))
- }
- }
- if !*quiet {
- w.Flush()
- }
- return nil
- }
- func (srv *Server) CmdLayers(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout,
- "layers", "[OPTIONS]",
- "List filesystem layers (debug only)")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- for _, layer := range srv.images.Layers() {
- fmt.Fprintln(stdout, layer)
- }
- return nil
- }
- func (srv *Server) CmdCp(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout,
- "cp", "[OPTIONS] IMAGE NAME",
- "Create a copy of IMAGE and call it NAME")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if image, err := srv.images.Get(cmd.Arg(0)); err != nil {
- return err
- } else if image == nil {
- return errors.New("Image " + cmd.Arg(0) + " does not exist")
- } else {
- if img, err := image.Copy(cmd.Arg(1)); err != nil {
- return err
- } else {
- fmt.Fprintln(stdout, img.Id)
- }
- }
- return nil
- }
- func (srv *Server) CmdCommit(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout,
- "commit", "[OPTIONS] CONTAINER [DEST]",
- "Create a new image from a container's changes")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- containerName, imgName := cmd.Arg(0), cmd.Arg(1)
- if containerName == "" || imgName == "" {
- cmd.Usage()
- return nil
- }
- if container := srv.containers.Get(containerName); container != nil {
- // FIXME: freeze the container before copying it to avoid data corruption?
- rwTar, err := fs.Tar(container.Mountpoint.Rw, fs.Uncompressed)
- if err != nil {
- return err
- }
- // Create a new image from the container's base layers + a new layer from container changes
- parentImg, err := srv.images.Get(container.Image)
- if err != nil {
- return err
- }
- img, err := srv.images.Create(rwTar, parentImg, imgName, "")
- if err != nil {
- return err
- }
- fmt.Fprintln(stdout, img.Id)
- return nil
- }
- return errors.New("No such container: " + containerName)
- }
- func (srv *Server) CmdTar(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout,
- "tar", "CONTAINER",
- "Stream the contents of a container as a tar archive")
- fl_sparse := cmd.Bool("s", false, "Generate a sparse tar stream (top layer + reference to bottom layers)")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if *fl_sparse {
- return errors.New("Sparse mode not yet implemented") // FIXME
- }
- name := cmd.Arg(0)
- if container := srv.containers.Get(name); container != nil {
- if err := container.Mountpoint.EnsureMounted(); err != nil {
- return err
- }
- data, err := fs.Tar(container.Mountpoint.Root, fs.Uncompressed)
- if err != nil {
- return err
- }
- // Stream the entire contents of the container (basically a volatile snapshot)
- if _, err := io.Copy(stdout, data); err != nil {
- return err
- }
- return nil
- }
- return errors.New("No such container: " + name)
- }
- func (srv *Server) CmdDiff(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout,
- "diff", "CONTAINER [OPTIONS]",
- "Inspect changes on a container's filesystem")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- return errors.New("Not enough arguments")
- }
- if container := srv.containers.Get(cmd.Arg(0)); container == nil {
- return errors.New("No such container")
- } else {
- changes, err := srv.images.Changes(container.Mountpoint)
- if err != nil {
- return err
- }
- for _, change := range changes {
- fmt.Fprintln(stdout, change.String())
- }
- }
- return nil
- }
- func (srv *Server) CmdReset(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout,
- "reset", "CONTAINER [OPTIONS]",
- "Reset changes to a container's filesystem")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- return errors.New("Not enough arguments")
- }
- for _, name := range cmd.Args() {
- if container := srv.containers.Get(name); container != nil {
- if err := container.Mountpoint.Reset(); err != nil {
- return errors.New("Reset " + container.Id + ": " + err.Error())
- }
- }
- }
- return nil
- }
- func (srv *Server) CmdLogs(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "logs", "[OPTIONS] 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)
- if container := srv.containers.Get(name); container != nil {
- if _, err := io.Copy(stdout, container.StdoutLog()); err != nil {
- return err
- }
- if _, err := io.Copy(stdout, container.StderrLog()); err != nil {
- return err
- }
- return nil
- }
- return errors.New("No such container: " + cmd.Arg(0))
- }
- func (srv *Server) CreateContainer(img *fs.Image, ports []int, user string, tty bool, openStdin bool, memory int64, comment string, cmd string, args ...string) (*docker.Container, error) {
- id := future.RandomId()[:8]
- container, err := srv.containers.Create(id, cmd, args, img,
- &docker.Config{
- Hostname: id,
- Ports: ports,
- User: user,
- Tty: tty,
- OpenStdin: openStdin,
- Memory: memory,
- })
- if err != nil {
- return nil, err
- }
- if err := container.SetUserData("image", img.Id); err != nil {
- srv.containers.Destroy(container)
- return nil, errors.New("Error setting container userdata: " + err.Error())
- }
- if err := container.SetUserData("comment", comment); err != nil {
- srv.containers.Destroy(container)
- return nil, errors.New("Error setting container userdata: " + err.Error())
- }
- return container, nil
- }
- func (srv *Server) CmdAttach(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "attach", "[OPTIONS]", "Attach to a running container")
- fl_i := cmd.Bool("i", false, "Attach to stdin")
- fl_o := cmd.Bool("o", true, "Attach to stdout")
- fl_e := cmd.Bool("e", true, "Attach to stderr")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 1 {
- cmd.Usage()
- return nil
- }
- name := cmd.Arg(0)
- container := srv.containers.Get(name)
- if container == nil {
- return errors.New("No such container: " + name)
- }
- var wg sync.WaitGroup
- if *fl_i {
- c_stdin, err := container.StdinPipe()
- if err != nil {
- return err
- }
- wg.Add(1)
- go func() { io.Copy(c_stdin, stdin); wg.Add(-1) }()
- }
- if *fl_o {
- c_stdout, err := container.StdoutPipe()
- if err != nil {
- return err
- }
- wg.Add(1)
- go func() { io.Copy(stdout, c_stdout); wg.Add(-1) }()
- }
- if *fl_e {
- c_stderr, err := container.StderrPipe()
- if err != nil {
- return err
- }
- wg.Add(1)
- go func() { io.Copy(stdout, c_stderr); wg.Add(-1) }()
- }
- wg.Wait()
- return nil
- }
- // Ports type - Used to parse multiple -p flags
- type ports []int
- func (p *ports) String() string {
- return fmt.Sprint(*p)
- }
- func (p *ports) Set(value string) error {
- port, err := strconv.Atoi(value)
- if err != nil {
- return fmt.Errorf("Invalid port: %v", value)
- }
- *p = append(*p, port)
- return nil
- }
- func (srv *Server) CmdRun(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "run", "[OPTIONS] IMAGE COMMAND [ARG...]", "Run a command in a new container")
- fl_user := cmd.String("u", "", "Username or UID")
- fl_attach := cmd.Bool("a", false, "Attach stdin and stdout")
- fl_stdin := cmd.Bool("i", false, "Keep stdin open even if not attached")
- fl_tty := cmd.Bool("t", false, "Allocate a pseudo-tty")
- fl_comment := cmd.String("c", "", "Comment")
- fl_memory := cmd.Int64("m", 0, "Memory limit (in bytes)")
- var fl_ports ports
- cmd.Var(&fl_ports, "p", "Map a network port to the container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- name := cmd.Arg(0)
- var cmdline []string
- if len(cmd.Args()) >= 2 {
- cmdline = cmd.Args()[1:]
- }
- // Choose a default image if needed
- if name == "" {
- name = "base"
- }
- // Choose a default command if needed
- if len(cmdline) == 0 {
- *fl_stdin = true
- *fl_tty = true
- *fl_attach = true
- cmdline = []string{"/bin/bash", "-i"}
- }
- // Find the image
- img, err := srv.images.Find(name)
- if err != nil {
- return err
- } else if img == nil {
- return errors.New("No such image: " + name)
- }
- // Create new container
- container, err := srv.CreateContainer(img, fl_ports, *fl_user, *fl_tty,
- *fl_stdin, *fl_memory, *fl_comment, cmdline[0], cmdline[1:]...)
- if err != nil {
- return errors.New("Error creating container: " + err.Error())
- }
- if *fl_stdin {
- cmd_stdin, err := container.StdinPipe()
- if err != nil {
- return err
- }
- if *fl_attach {
- future.Go(func() error {
- _, err := io.Copy(cmd_stdin, stdin)
- cmd_stdin.Close()
- return err
- })
- }
- }
- // Run the container
- if *fl_attach {
- cmd_stderr, err := container.StderrPipe()
- if err != nil {
- return err
- }
- cmd_stdout, err := container.StdoutPipe()
- if err != nil {
- return err
- }
- if err := container.Start(); err != nil {
- return err
- }
- sending_stdout := future.Go(func() error {
- _, err := io.Copy(stdout, cmd_stdout)
- return err
- })
- sending_stderr := future.Go(func() error {
- _, err := io.Copy(stdout, cmd_stderr)
- return err
- })
- err_sending_stdout := <-sending_stdout
- err_sending_stderr := <-sending_stderr
- if err_sending_stdout != nil {
- return err_sending_stdout
- }
- if err_sending_stderr != nil {
- return err_sending_stderr
- }
- container.Wait()
- } else {
- if err := container.Start(); err != nil {
- return err
- }
- fmt.Fprintln(stdout, container.Id)
- }
- return nil
- }
- func New() (*Server, error) {
- future.Seed()
- // if err != nil {
- // return nil, err
- // }
- containers, err := docker.New()
- if err != nil {
- return nil, err
- }
- srv := &Server{
- images: containers.Store,
- containers: containers,
- }
- return srv, nil
- }
- func (srv *Server) CmdMirror(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- _, err := io.Copy(stdout, stdin)
- return err
- }
- func (srv *Server) CmdDebug(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- for {
- if line, err := bufio.NewReader(stdin).ReadString('\n'); err == nil {
- fmt.Printf("--- %s", line)
- } else if err == io.EOF {
- if len(line) > 0 {
- fmt.Printf("--- %s\n", line)
- }
- break
- } else {
- return err
- }
- }
- return nil
- }
- func (srv *Server) CmdWeb(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "web", "[OPTIONS]", "A web UI for docker")
- showurl := cmd.Bool("u", false, "Return the URL of the web UI")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if *showurl {
- fmt.Fprintln(stdout, "http://localhost:4242/web")
- } else {
- if file, err := os.Open("dockerweb.html"); err != nil {
- return err
- } else if _, err := io.Copy(stdout, file); err != nil {
- return err
- }
- }
- return nil
- }
- type Server struct {
- containers *docker.Docker
- images *fs.Store
- }
|