123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997 |
- package docker
- import (
- "bytes"
- "encoding/json"
- "fmt"
- "github.com/dotcloud/docker/auth"
- "github.com/dotcloud/docker/rcli"
- "io"
- "log"
- "net/http"
- "net/url"
- "runtime"
- "strconv"
- "strings"
- "text/tabwriter"
- "time"
- "unicode"
- )
- const VERSION = "0.1.4"
- var (
- GIT_COMMIT string
- NO_MEMORY_LIMIT bool
- )
- 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 [][]string{
- {"attach", "Attach to a running container"},
- {"commit", "Create a new image from a container's changes"},
- {"diff", "Inspect changes on a container's filesystem"},
- {"export", "Stream the contents of a container as a tar archive"},
- {"history", "Show the history of an image"},
- {"images", "List images"},
- {"import", "Create a new filesystem image from the contents of a tarball"},
- {"info", "Display system-wide information"},
- {"inspect", "Return low-level information on a container"},
- {"kill", "Kill a running container"},
- {"login", "Register or Login to the docker registry server"},
- {"logs", "Fetch the logs of a container"},
- {"port", "Lookup the public-facing port which is NAT-ed to PRIVATE_PORT"},
- {"ps", "List containers"},
- {"pull", "Pull an image or a repository from the docker registry server"},
- {"push", "Push an image or a repository to the docker registry server"},
- {"restart", "Restart a running container"},
- {"rm", "Remove a container"},
- {"rmi", "Remove an image"},
- {"run", "Run a command in a new container"},
- {"start", "Start a stopped container"},
- {"stop", "Stop a running container"},
- {"tag", "Tag an image into a repository"},
- {"version", "Show the docker version information"},
- {"wait", "Block until a container stops, then print its exit code"},
- } {
- help += fmt.Sprintf(" %-10.10s%s\n", cmd[0], cmd[1])
- }
- return help
- }
- // 'docker login': login / register a user to registry service.
- func (srv *Server) CmdLogin(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
- // Read a line on raw terminal with support for simple backspace
- // sequences and echo.
- //
- // This function is necessary because the login command must be done in a
- // raw terminal for two reasons:
- // - we have to read a password (without echoing it);
- // - the rcli "protocol" only supports cannonical and raw modes and you
- // can't tune it once the command as been started.
- var readStringOnRawTerminal = func(stdin io.Reader, stdout io.Writer, echo bool) string {
- char := make([]byte, 1)
- buffer := make([]byte, 64)
- var i = 0
- for i < len(buffer) {
- n, err := stdin.Read(char)
- if n > 0 {
- if char[0] == '\r' || char[0] == '\n' {
- stdout.Write([]byte{'\r', '\n'})
- break
- } else if char[0] == 127 || char[0] == '\b' {
- if i > 0 {
- if echo {
- stdout.Write([]byte{'\b', ' ', '\b'})
- }
- i--
- }
- } else if !unicode.IsSpace(rune(char[0])) &&
- !unicode.IsControl(rune(char[0])) {
- if echo {
- stdout.Write(char)
- }
- buffer[i] = char[0]
- i++
- }
- }
- if err != nil {
- if err != io.EOF {
- fmt.Fprintf(stdout, "Read error: %v\r\n", err)
- }
- break
- }
- }
- return string(buffer[:i])
- }
- var readAndEchoString = func(stdin io.Reader, stdout io.Writer) string {
- return readStringOnRawTerminal(stdin, stdout, true)
- }
- var readString = func(stdin io.Reader, stdout io.Writer) string {
- return readStringOnRawTerminal(stdin, stdout, false)
- }
- stdout.SetOptionRawTerminal()
- cmd := rcli.Subcmd(stdout, "login", "", "Register or Login to the docker registry server")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- var username string
- var password string
- var email string
- fmt.Fprint(stdout, "Username (", srv.runtime.authConfig.Username, "): ")
- username = readAndEchoString(stdin, stdout)
- if username == "" {
- username = srv.runtime.authConfig.Username
- }
- if username != srv.runtime.authConfig.Username {
- fmt.Fprint(stdout, "Password: ")
- password = readString(stdin, stdout)
- if password == "" {
- return fmt.Errorf("Error : Password Required")
- }
- fmt.Fprint(stdout, "Email (", srv.runtime.authConfig.Email, "): ")
- email = readAndEchoString(stdin, stdout)
- if email == "" {
- email = srv.runtime.authConfig.Email
- }
- } else {
- password = srv.runtime.authConfig.Password
- email = srv.runtime.authConfig.Email
- }
- newAuthConfig := auth.NewAuthConfig(username, password, email, srv.runtime.root)
- status, err := auth.Login(newAuthConfig)
- if err != nil {
- fmt.Fprintf(stdout, "Error: %s\r\n", err)
- } else {
- srv.runtime.authConfig = newAuthConfig
- }
- if status != "" {
- fmt.Fprint(stdout, status)
- }
- return nil
- }
- // '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", "CONTAINER [CONTAINER...]", "Block until a container stops, then print its exit code.")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- for _, name := range cmd.Args() {
- if container := srv.runtime.Get(name); container != nil {
- fmt.Fprintln(stdout, container.Wait())
- } else {
- return fmt.Errorf("No such container: %s", 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)
- fmt.Fprintf(stdout, "Git Commit:%s\n", GIT_COMMIT)
- if NO_MEMORY_LIMIT {
- fmt.Fprintf(stdout, "Memory limit disabled\n")
- }
- return nil
- }
- // 'docker info': display system-wide information.
- func (srv *Server) CmdInfo(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- images, _ := srv.runtime.graph.All()
- 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.runtime.List()),
- VERSION,
- imgcount)
- if !rcli.DEBUG_FLAG {
- return nil
- }
- fmt.Fprintln(stdout, "debug mode enabled")
- fmt.Fprintf(stdout, "fds: %d\ngoroutines: %d\n", getTotalUsedFds(), runtime.NumGoroutine())
- return nil
- }
- func (srv *Server) CmdStop(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "stop", "CONTAINER [CONTAINER...]", "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.runtime.Get(name); container != nil {
- if err := container.Stop(); err != nil {
- return err
- }
- fmt.Fprintln(stdout, container.ShortId())
- } else {
- return fmt.Errorf("No such container: %s", name)
- }
- }
- return nil
- }
- func (srv *Server) CmdRestart(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "restart", "CONTAINER [CONTAINER...]", "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.runtime.Get(name); container != nil {
- if err := container.Restart(); err != nil {
- return err
- }
- fmt.Fprintln(stdout, container.ShortId())
- } else {
- return fmt.Errorf("No such container: %s", name)
- }
- }
- return nil
- }
- func (srv *Server) CmdStart(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "start", "CONTAINER [CONTAINER...]", "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.runtime.Get(name); container != nil {
- if err := container.Start(); err != nil {
- return err
- }
- fmt.Fprintln(stdout, container.ShortId())
- } else {
- return fmt.Errorf("No such container: %s", name)
- }
- }
- return nil
- }
- func (srv *Server) CmdInspect(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "inspect", "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.runtime.Get(name); container != nil {
- obj = container
- } else if image, err := srv.runtime.repositories.LookupImage(name); err == nil && image != nil {
- obj = image
- } else {
- // No output means the object does not exist
- // (easier to script since stdout and stderr are not differentiated atm)
- return nil
- }
- 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
- }
- stdout.Write([]byte{'\n'})
- return nil
- }
- func (srv *Server) CmdPort(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "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
- }
- name := cmd.Arg(0)
- privatePort := cmd.Arg(1)
- if container := srv.runtime.Get(name); container == nil {
- return fmt.Errorf("No such container: %s", 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 IMAGE' removes all images with the name IMAGE
- func (srv *Server) CmdRmi(stdin io.ReadCloser, stdout io.Writer, args ...string) (err error) {
- cmd := rcli.Subcmd(stdout, "rmimage", "IMAGE [IMAGE...]", "Remove an image")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- for _, name := range cmd.Args() {
- img, err := srv.runtime.repositories.LookupImage(name)
- if err != nil {
- return err
- }
- if err := srv.runtime.graph.Delete(img.Id); err != nil {
- return err
- }
- }
- return nil
- }
- func (srv *Server) CmdHistory(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "history", "IMAGE", "Show the history of an image")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 1 {
- cmd.Usage()
- return nil
- }
- image, err := srv.runtime.repositories.LookupImage(cmd.Arg(0))
- if err != nil {
- return err
- }
- w := tabwriter.NewWriter(stdout, 20, 1, 3, ' ', 0)
- defer w.Flush()
- fmt.Fprintln(w, "ID\tCREATED\tCREATED BY")
- return image.WalkHistory(func(img *Image) error {
- fmt.Fprintf(w, "%s\t%s\t%s\n",
- srv.runtime.repositories.ImageName(img.ShortId()),
- HumanDuration(time.Now().Sub(img.Created))+" ago",
- strings.Join(img.ContainerConfig.Cmd, " "),
- )
- return nil
- })
- }
- func (srv *Server) CmdRm(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "rm", "CONTAINER [CONTAINER...]", "Remove a container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- for _, name := range cmd.Args() {
- container := srv.runtime.Get(name)
- if container == nil {
- return fmt.Errorf("No such container: %s", name)
- }
- if err := srv.runtime.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", "CONTAINER [CONTAINER...]", "Kill a running container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- for _, name := range cmd.Args() {
- container := srv.runtime.Get(name)
- if container == nil {
- return fmt.Errorf("No such container: %s", 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 rcli.DockerConn, args ...string) error {
- stdout.Flush()
- cmd := rcli.Subcmd(stdout, "import", "URL|- [REPOSITORY [TAG]]", "Create a new filesystem image from the contents of a tarball")
- var archive io.Reader
- var resp *http.Response
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() < 1 {
- cmd.Usage()
- return nil
- }
- src := cmd.Arg(0)
- if src == "-" {
- archive = stdin
- } else {
- u, err := url.Parse(src)
- if err != nil {
- return err
- }
- if u.Scheme == "" {
- u.Scheme = "http"
- u.Host = src
- u.Path = ""
- }
- fmt.Fprintln(stdout, "Downloading from", u)
- // Download with curl (pretty progress bar)
- // If curl is not available, fallback to http.Get()
- resp, err = Download(u.String(), stdout)
- if err != nil {
- return err
- }
- archive = ProgressReader(resp.Body, int(resp.ContentLength), stdout)
- }
- img, err := srv.runtime.graph.Create(archive, nil, "Imported from "+src)
- if err != nil {
- return err
- }
- // Optionally register the image at REPO/TAG
- if repository := cmd.Arg(1); repository != "" {
- tag := cmd.Arg(2) // Repository will handle an empty tag properly
- if err := srv.runtime.repositories.Set(repository, tag, img.Id, true); err != nil {
- return err
- }
- }
- fmt.Fprintln(stdout, img.ShortId())
- return nil
- }
- func (srv *Server) CmdPush(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
- cmd := rcli.Subcmd(stdout, "push", "NAME", "Push an image or a repository to the registry")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- local := cmd.Arg(0)
- if local == "" {
- cmd.Usage()
- return nil
- }
- // If the login failed, abort
- if srv.runtime.authConfig == nil || srv.runtime.authConfig.Username == "" {
- if err := srv.CmdLogin(stdin, stdout, args...); err != nil {
- return err
- }
- if srv.runtime.authConfig == nil || srv.runtime.authConfig.Username == "" {
- return fmt.Errorf("Please login prior to push. ('docker login')")
- }
- }
- var remote string
- tmp := strings.SplitN(local, "/", 2)
- if len(tmp) == 1 {
- return fmt.Errorf(
- "Impossible to push a \"root\" repository. Please rename your repository in <user>/<repo> (ex: %s/%s)",
- srv.runtime.authConfig.Username, local)
- } else {
- remote = local
- }
- Debugf("Pushing [%s] to [%s]\n", local, remote)
- // Try to get the image
- // FIXME: Handle lookup
- // FIXME: Also push the tags in case of ./docker push myrepo:mytag
- // img, err := srv.runtime.LookupImage(cmd.Arg(0))
- img, err := srv.runtime.graph.Get(local)
- if err != nil {
- Debugf("The push refers to a repository [%s] (len: %d)\n", local, len(srv.runtime.repositories.Repositories[local]))
- // If it fails, try to get the repository
- if localRepo, exists := srv.runtime.repositories.Repositories[local]; exists {
- if err := srv.runtime.graph.PushRepository(stdout, remote, localRepo, srv.runtime.authConfig); err != nil {
- return err
- }
- return nil
- }
- return err
- }
- err = srv.runtime.graph.PushImage(stdout, img, srv.runtime.authConfig)
- if err != nil {
- return err
- }
- return nil
- }
- func (srv *Server) CmdPull(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "pull", "NAME", "Pull an image or a repository from the registry")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- remote := cmd.Arg(0)
- if remote == "" {
- cmd.Usage()
- return nil
- }
- // FIXME: CmdPull should be a wrapper around Runtime.Pull()
- if srv.runtime.graph.LookupRemoteImage(remote, srv.runtime.authConfig) {
- if err := srv.runtime.graph.PullImage(stdout, remote, srv.runtime.authConfig); err != nil {
- return err
- }
- return nil
- }
- // FIXME: Allow pull repo:tag
- if err := srv.runtime.graph.PullRepository(stdout, remote, "", srv.runtime.repositories, srv.runtime.authConfig); err != nil {
- return err
- }
- 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")
- flAll := cmd.Bool("a", false, "show all images")
- 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.Fprintln(w, "REPOSITORY\tTAG\tID\tCREATED")
- }
- var allImages map[string]*Image
- var err error
- if *flAll {
- allImages, err = srv.runtime.graph.Map()
- } else {
- allImages, err = srv.runtime.graph.Heads()
- }
- if err != nil {
- return err
- }
- for name, repository := range srv.runtime.repositories.Repositories {
- if nameFilter != "" && name != nameFilter {
- continue
- }
- for tag, id := range repository {
- image, err := srv.runtime.graph.Get(id)
- if err != nil {
- log.Printf("Warning: couldn't load %s from %s/%s: %s", id, name, tag, err)
- continue
- }
- delete(allImages, id)
- if !*quiet {
- for idx, field := range []string{
- /* REPOSITORY */ name,
- /* TAG */ tag,
- /* ID */ TruncateId(id),
- /* CREATED */ HumanDuration(time.Now().Sub(image.Created)) + " ago",
- } {
- if idx == 0 {
- w.Write([]byte(field))
- } else {
- w.Write([]byte("\t" + field))
- }
- }
- w.Write([]byte{'\n'})
- } else {
- stdout.Write([]byte(image.ShortId() + "\n"))
- }
- }
- }
- // Display images which aren't part of a
- if nameFilter == "" {
- for id, image := range allImages {
- if !*quiet {
- for idx, field := range []string{
- /* REPOSITORY */ "<none>",
- /* TAG */ "<none>",
- /* ID */ TruncateId(id),
- /* CREATED */ HumanDuration(time.Now().Sub(image.Created)) + " ago",
- } {
- if idx == 0 {
- w.Write([]byte(field))
- } else {
- w.Write([]byte("\t" + field))
- }
- }
- w.Write([]byte{'\n'})
- } else {
- stdout.Write([]byte(image.ShortId() + "\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")
- flAll := cmd.Bool("a", false, "Show all containers. Only running containers are shown by default.")
- flFull := cmd.Bool("notrunc", false, "Don't truncate output")
- latest := cmd.Bool("l", false, "Show only the latest created container, include non-running ones.")
- nLast := cmd.Int("n", -1, "Show n last created containers, include non-running ones.")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if *nLast == -1 && *latest {
- *nLast = 1
- }
- w := tabwriter.NewWriter(stdout, 12, 1, 3, ' ', 0)
- if !*quiet {
- fmt.Fprintln(w, "ID\tIMAGE\tCOMMAND\tCREATED\tSTATUS\tCOMMENT")
- }
- for i, container := range srv.runtime.List() {
- if !container.State.Running && !*flAll && *nLast == -1 {
- continue
- }
- if i == *nLast {
- break
- }
- if !*quiet {
- command := fmt.Sprintf("%s %s", container.Path, strings.Join(container.Args, " "))
- if !*flFull {
- command = Trunc(command, 20)
- }
- for idx, field := range []string{
- /* ID */ container.ShortId(),
- /* IMAGE */ srv.runtime.repositories.ImageName(container.Image),
- /* COMMAND */ command,
- /* CREATED */ HumanDuration(time.Now().Sub(container.Created)) + " ago",
- /* STATUS */ container.State.String(),
- /* COMMENT */ "",
- } {
- if idx == 0 {
- w.Write([]byte(field))
- } else {
- w.Write([]byte("\t" + field))
- }
- }
- w.Write([]byte{'\n'})
- } else {
- stdout.Write([]byte(container.ShortId() + "\n"))
- }
- }
- if !*quiet {
- w.Flush()
- }
- return nil
- }
- func (srv *Server) CmdCommit(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout,
- "commit", "[OPTIONS] CONTAINER [REPOSITORY [TAG]]",
- "Create a new image from a container's changes")
- flComment := cmd.String("m", "", "Commit message")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- containerName, repository, tag := cmd.Arg(0), cmd.Arg(1), cmd.Arg(2)
- if containerName == "" {
- cmd.Usage()
- return nil
- }
- img, err := srv.runtime.Commit(containerName, repository, tag, *flComment)
- if err != nil {
- return err
- }
- fmt.Fprintln(stdout, img.ShortId())
- return nil
- }
- func (srv *Server) CmdExport(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout,
- "export", "CONTAINER",
- "Export the contents of a filesystem as a tar archive")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- name := cmd.Arg(0)
- if container := srv.runtime.Get(name); container != nil {
- data, err := container.Export()
- 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 fmt.Errorf("No such container: %s", name)
- }
- func (srv *Server) CmdDiff(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout,
- "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
- }
- if container := srv.runtime.Get(cmd.Arg(0)); container == nil {
- return fmt.Errorf("No such container")
- } else {
- changes, err := container.Changes()
- if err != nil {
- return err
- }
- for _, change := range changes {
- fmt.Fprintln(stdout, change.String())
- }
- }
- return nil
- }
- func (srv *Server) CmdLogs(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "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)
- if container := srv.runtime.Get(name); container != nil {
- logStdout, err := container.ReadLog("stdout")
- if err != nil {
- return err
- }
- logStderr, err := container.ReadLog("stderr")
- if err != nil {
- return err
- }
- // FIXME: Interpolate stdout and stderr instead of concatenating them
- // FIXME: Differentiate stdout and stderr in the remote protocol
- if _, err := io.Copy(stdout, logStdout); err != nil {
- return err
- }
- if _, err := io.Copy(stdout, logStderr); err != nil {
- return err
- }
- return nil
- }
- return fmt.Errorf("No such container: %s", cmd.Arg(0))
- }
- func (srv *Server) CmdAttach(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
- cmd := rcli.Subcmd(stdout, "attach", "CONTAINER", "Attach to a running container")
- if err := cmd.Parse(args); err != nil {
- return nil
- }
- if cmd.NArg() != 1 {
- cmd.Usage()
- return nil
- }
- name := cmd.Arg(0)
- container := srv.runtime.Get(name)
- if container == nil {
- return fmt.Errorf("No such container: %s", name)
- }
- if container.Config.Tty {
- stdout.SetOptionRawTerminal()
- }
- // Flush the options to make sure the client sets the raw mode
- stdout.Flush()
- return <-container.Attach(stdin, nil, stdout, stdout)
- }
- // 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
- }
- // ListOpts type
- type ListOpts []string
- func (opts *ListOpts) String() string {
- return fmt.Sprint(*opts)
- }
- func (opts *ListOpts) Set(value string) error {
- *opts = append(*opts, value)
- return nil
- }
- // AttachOpts stores arguments to 'docker run -a', eg. which streams to attach to
- type AttachOpts map[string]bool
- func NewAttachOpts() AttachOpts {
- return make(AttachOpts)
- }
- func (opts AttachOpts) String() string {
- // Cast to underlying map type to avoid infinite recursion
- return fmt.Sprintf("%v", map[string]bool(opts))
- }
- func (opts AttachOpts) Set(val string) error {
- if val != "stdin" && val != "stdout" && val != "stderr" {
- return fmt.Errorf("Unsupported stream name: %s", val)
- }
- opts[val] = true
- return nil
- }
- func (opts AttachOpts) Get(val string) bool {
- if res, exists := opts[val]; exists {
- return res
- }
- return false
- }
- func (srv *Server) CmdTag(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
- cmd := rcli.Subcmd(stdout, "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.Usage()
- return nil
- }
- return srv.runtime.repositories.Set(cmd.Arg(1), cmd.Arg(2), cmd.Arg(0), *force)
- }
- func (srv *Server) CmdRun(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
- config, err := ParseRun(args, stdout)
- if err != nil {
- return err
- }
- if config.Image == "" {
- fmt.Fprintln(stdout, "Error: Image not specified")
- return fmt.Errorf("Image not specified")
- }
- if len(config.Cmd) == 0 {
- fmt.Fprintln(stdout, "Error: Command not specified")
- return fmt.Errorf("Command not specified")
- }
- if config.Tty {
- stdout.SetOptionRawTerminal()
- }
- // Flush the options to make sure the client sets the raw mode
- // or tell the client there is no options
- stdout.Flush()
- // Create new container
- container, err := srv.runtime.Create(config)
- if err != nil {
- // If container not found, try to pull it
- if srv.runtime.graph.IsNotExist(err) {
- fmt.Fprintf(stdout, "Image %s not found, trying to pull it from registry.\r\n", config.Image)
- if err = srv.CmdPull(stdin, stdout, config.Image); err != nil {
- return err
- }
- if container, err = srv.runtime.Create(config); err != nil {
- return err
- }
- } else {
- return err
- }
- }
- var (
- cStdin io.ReadCloser
- cStdout, cStderr io.Writer
- )
- if config.AttachStdin {
- r, w := io.Pipe()
- go func() {
- defer w.Close()
- defer Debugf("Closing buffered stdin pipe")
- io.Copy(w, stdin)
- }()
- cStdin = r
- }
- if config.AttachStdout {
- cStdout = stdout
- }
- if config.AttachStderr {
- cStderr = stdout // FIXME: rcli can't differentiate stdout from stderr
- }
- attachErr := container.Attach(cStdin, stdin, cStdout, cStderr)
- Debugf("Starting\n")
- if err := container.Start(); err != nil {
- return err
- }
- if cStdout == nil && cStderr == nil {
- fmt.Fprintln(stdout, container.ShortId())
- }
- Debugf("Waiting for attach to return\n")
- <-attachErr
- // Expecting I/O pipe error, discarding
- return nil
- }
- func NewServer() (*Server, error) {
- if runtime.GOARCH != "amd64" {
- log.Fatalf("The docker runtime currently only supports amd64 (not %s). This will change in the future. Aborting.", runtime.GOARCH)
- }
- runtime, err := NewRuntime()
- if err != nil {
- return nil, err
- }
- srv := &Server{
- runtime: runtime,
- restEndpoint: NewRestEndpoint(runtime),
- }
- return srv, nil
- }
- type Server struct {
- runtime *Runtime
- restEndpoint *RestEndpoint
- }
|