2013-03-14 05:26:46 -04:00
|
|
|
package docker
|
2013-02-13 20:10:00 -05:00
|
|
|
|
|
|
|
import (
|
2013-02-13 20:28:13 -05:00
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2013-02-13 20:10:00 -05:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2013-03-14 20:43:59 -04:00
|
|
|
"github.com/dotcloud/docker/auth"
|
2013-03-12 14:59:27 -04:00
|
|
|
"github.com/dotcloud/docker/rcli"
|
2013-02-13 20:28:13 -05:00
|
|
|
"io"
|
2013-03-21 05:04:10 -04:00
|
|
|
"log"
|
2013-03-21 04:07:07 -04:00
|
|
|
"math/rand"
|
2013-03-13 14:33:48 -04:00
|
|
|
"net/http"
|
2013-03-13 21:37:00 -04:00
|
|
|
"net/url"
|
2013-03-21 05:04:10 -04:00
|
|
|
"runtime"
|
2013-02-28 14:52:22 -05:00
|
|
|
"strconv"
|
2013-02-13 20:28:13 -05:00
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"text/tabwriter"
|
|
|
|
"time"
|
2013-02-13 20:10:00 -05:00
|
|
|
)
|
|
|
|
|
2013-03-18 03:35:48 -04:00
|
|
|
const VERSION = "0.0.3"
|
2013-02-13 20:10:00 -05:00
|
|
|
|
|
|
|
func (srv *Server) Name() string {
|
|
|
|
return "docker"
|
|
|
|
}
|
|
|
|
|
2013-03-11 19:11:46 -04:00
|
|
|
// FIXME: Stop violating DRY by repeating usage here and in Subcmd declarations
|
2013-02-13 20:10:00 -05:00
|
|
|
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"},
|
2013-03-12 00:04:16 -04:00
|
|
|
{"import", "Create a new filesystem image from the contents of a tarball"},
|
2013-03-11 19:11:46 -04:00
|
|
|
{"attach", "Attach to a running container"},
|
|
|
|
{"commit", "Create a new image from a container's changes"},
|
2013-02-13 20:10:00 -05:00
|
|
|
{"diff", "Inspect changes on a container's filesystem"},
|
|
|
|
{"images", "List images"},
|
|
|
|
{"info", "Display system-wide information"},
|
2013-03-11 18:08:22 -04:00
|
|
|
{"inspect", "Return low-level information on a container"},
|
2013-03-11 19:11:46 -04:00
|
|
|
{"kill", "Kill a running container"},
|
2013-03-14 20:43:59 -04:00
|
|
|
{"login", "Register or Login to the docker registry server"},
|
2013-03-11 19:11:46 -04:00
|
|
|
{"logs", "Fetch the logs of a container"},
|
|
|
|
{"port", "Lookup the public-facing port which is NAT-ed to PRIVATE_PORT"},
|
|
|
|
{"ps", "List containers"},
|
|
|
|
{"restart", "Restart a running container"},
|
|
|
|
{"rm", "Remove a container"},
|
2013-03-15 03:47:02 -04:00
|
|
|
{"rmi", "Remove an image"},
|
2013-03-11 19:11:46 -04:00
|
|
|
{"run", "Run a command in a new container"},
|
|
|
|
{"start", "Start a stopped container"},
|
|
|
|
{"stop", "Stop a running container"},
|
2013-03-21 04:23:00 -04:00
|
|
|
{"export", "Stream the contents of a container as a tar archive"},
|
2013-03-12 20:34:15 -04:00
|
|
|
{"version", "Show the docker version information"},
|
2013-03-11 19:11:46 -04:00
|
|
|
{"wait", "Block until a container stops, then print its exit code"},
|
2013-02-13 20:10:00 -05:00
|
|
|
} {
|
2013-03-21 01:42:50 -04:00
|
|
|
help += fmt.Sprintf(" %-10.10s%s\n", cmd[0], cmd[1])
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
return help
|
|
|
|
}
|
|
|
|
|
2013-03-14 20:43:59 -04:00
|
|
|
// 'docker login': login / register a user to registry service.
|
|
|
|
func (srv *Server) CmdLogin(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
2013-03-15 10:49:27 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "login", "", "Register or Login to the docker registry server")
|
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-03-14 20:43:59 -04:00
|
|
|
var username string
|
|
|
|
var password string
|
|
|
|
var email string
|
|
|
|
authConfig, err := auth.LoadConfig()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(stdout, "Error : %s\n", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprint(stdout, "Username (", authConfig.Username, "): ")
|
2013-03-14 20:53:10 -04:00
|
|
|
fmt.Fscanf(stdin, "%s", &username)
|
2013-03-14 20:43:59 -04:00
|
|
|
if username == "" {
|
|
|
|
username = authConfig.Username
|
|
|
|
}
|
|
|
|
if username != authConfig.Username {
|
|
|
|
fmt.Fprint(stdout, "Password: ")
|
2013-03-14 20:53:10 -04:00
|
|
|
fmt.Fscanf(stdin, "%s", &password)
|
2013-03-14 20:43:59 -04:00
|
|
|
|
2013-03-15 10:49:27 -04:00
|
|
|
if password == "" {
|
|
|
|
return errors.New("Error : Password Required\n")
|
|
|
|
}
|
|
|
|
|
2013-03-14 20:43:59 -04:00
|
|
|
fmt.Fprint(stdout, "Email (", authConfig.Email, "): ")
|
2013-03-14 20:53:10 -04:00
|
|
|
fmt.Fscanf(stdin, "%s", &email)
|
2013-03-14 20:43:59 -04:00
|
|
|
if email == "" {
|
|
|
|
email = authConfig.Email
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
password = authConfig.Password
|
|
|
|
email = authConfig.Email
|
|
|
|
}
|
|
|
|
newAuthConfig := auth.AuthConfig{Username: username, Password: password, Email: email}
|
|
|
|
status, err := auth.Login(newAuthConfig)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(stdout, "Error : %s\n", err)
|
|
|
|
}
|
2013-03-14 23:21:03 -04:00
|
|
|
if status != "" {
|
|
|
|
fmt.Fprintf(stdout, status)
|
|
|
|
}
|
2013-03-14 20:43:59 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-02-26 14:43:54 -05:00
|
|
|
// '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() {
|
2013-03-21 03:41:15 -04:00
|
|
|
if container := srv.runtime.Get(name); container != nil {
|
2013-02-26 14:43:54 -05:00
|
|
|
fmt.Fprintln(stdout, container.Wait())
|
|
|
|
} else {
|
|
|
|
return errors.New("No such container: " + name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-03-12 20:34:15 -04:00
|
|
|
// '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
|
|
|
|
}
|
|
|
|
|
2013-02-13 20:10:00 -05:00
|
|
|
// 'docker info': display system-wide information.
|
|
|
|
func (srv *Server) CmdInfo(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
2013-03-21 03:41:15 -04:00
|
|
|
images, _ := srv.runtime.graph.All()
|
2013-03-12 11:59:32 -04:00
|
|
|
var imgcount int
|
|
|
|
if images == nil {
|
|
|
|
imgcount = 0
|
|
|
|
} else {
|
|
|
|
imgcount = len(images)
|
|
|
|
}
|
2013-03-11 19:11:46 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "info", "", "Display system-wide information.")
|
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-03-12 11:59:32 -04:00
|
|
|
if cmd.NArg() > 0 {
|
2013-03-11 19:11:46 -04:00
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
2013-03-12 07:24:26 -04:00
|
|
|
}
|
2013-02-13 20:10:00 -05:00
|
|
|
fmt.Fprintf(stdout, "containers: %d\nversion: %s\nimages: %d\n",
|
2013-03-21 03:41:15 -04:00
|
|
|
len(srv.runtime.List()),
|
2013-02-13 20:10:00 -05:00
|
|
|
VERSION,
|
2013-03-12 11:59:32 -04:00
|
|
|
imgcount)
|
2013-02-13 20:10:00 -05:00
|
|
|
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() {
|
2013-03-21 03:41:15 -04:00
|
|
|
if container := srv.runtime.Get(name); container != nil {
|
2013-02-13 20:10:00 -05:00
|
|
|
if err := container.Stop(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Fprintln(stdout, container.Id)
|
|
|
|
} else {
|
2013-02-14 16:49:05 -05:00
|
|
|
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() {
|
2013-03-21 03:41:15 -04:00
|
|
|
if container := srv.runtime.Get(name); container != nil {
|
2013-02-14 16:49:05 -05:00
|
|
|
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() {
|
2013-03-21 03:41:15 -04:00
|
|
|
if container := srv.runtime.Get(name); container != nil {
|
2013-02-14 16:49:05 -05:00
|
|
|
if err := container.Start(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Fprintln(stdout, container.Id)
|
|
|
|
} else {
|
2013-02-13 20:10:00 -05:00
|
|
|
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() {
|
2013-03-21 03:41:15 -04:00
|
|
|
if container := srv.runtime.Get(name); container != nil {
|
2013-03-21 03:25:00 -04:00
|
|
|
if err := container.EnsureMounted(); err != nil {
|
2013-02-13 20:10:00 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Fprintln(stdout, container.Id)
|
|
|
|
} else {
|
|
|
|
return errors.New("No such container: " + name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
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{}
|
2013-03-21 03:41:15 -04:00
|
|
|
if container := srv.runtime.Get(name); container != nil {
|
2013-02-13 20:10:00 -05:00
|
|
|
obj = container
|
2013-03-21 03:41:15 -04:00
|
|
|
} else if image, err := srv.runtime.graph.Get(name); err != nil {
|
2013-03-13 16:23:59 -04:00
|
|
|
return err
|
|
|
|
} else if image != nil {
|
|
|
|
obj = image
|
2013-02-13 20:10:00 -05:00
|
|
|
} else {
|
2013-03-13 16:48:00 -04:00
|
|
|
// No output means the object does not exist
|
|
|
|
// (easier to script since stdout and stderr are not differentiated atm)
|
|
|
|
return nil
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|
2013-03-13 16:48:00 -04:00
|
|
|
stdout.Write([]byte{'\n'})
|
2013-02-13 20:10:00 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-03-06 03:39:03 -05:00
|
|
|
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)
|
2013-03-21 03:41:15 -04:00
|
|
|
if container := srv.runtime.Get(name); container == nil {
|
2013-03-06 03:39:03 -05:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2013-02-13 20:10:00 -05:00
|
|
|
// 'docker rmi NAME' removes all images with the name NAME
|
2013-03-14 12:27:06 -04:00
|
|
|
func (srv *Server) CmdRmi(stdin io.ReadCloser, stdout io.Writer, args ...string) (err error) {
|
2013-03-13 14:14:37 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "rmimage", "[OPTIONS] IMAGE", "Remove an image")
|
2013-03-14 12:27:06 -04:00
|
|
|
if cmd.Parse(args) != nil || cmd.NArg() < 1 {
|
2013-03-13 14:14:37 -04:00
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
for _, name := range cmd.Args() {
|
2013-03-21 03:41:15 -04:00
|
|
|
if err := srv.runtime.graph.Delete(name); err != nil {
|
2013-03-13 14:14:37 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2013-02-13 20:10:00 -05:00
|
|
|
|
|
|
|
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() {
|
2013-03-21 03:41:15 -04:00
|
|
|
container := srv.runtime.Get(name)
|
2013-02-13 20:10:00 -05:00
|
|
|
if container == nil {
|
|
|
|
return errors.New("No such container: " + name)
|
|
|
|
}
|
2013-03-21 03:41:15 -04:00
|
|
|
if err := srv.runtime.Destroy(container); err != nil {
|
2013-02-13 20:28:13 -05:00
|
|
|
fmt.Fprintln(stdout, "Error destroying container "+name+": "+err.Error())
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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() {
|
2013-03-21 03:41:15 -04:00
|
|
|
container := srv.runtime.Get(name)
|
2013-02-13 20:10:00 -05:00
|
|
|
if container == nil {
|
|
|
|
return errors.New("No such container: " + name)
|
|
|
|
}
|
|
|
|
if err := container.Kill(); err != nil {
|
2013-02-13 20:28:13 -05:00
|
|
|
fmt.Fprintln(stdout, "Error killing container "+name+": "+err.Error())
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-03-12 00:04:16 -04:00
|
|
|
func (srv *Server) CmdImport(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
2013-03-21 20:35:49 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "import", "[OPTIONS] URL|- [REPOSITORY [TAG]]", "Create a new filesystem image from the contents of a tarball")
|
2013-03-13 14:33:48 -04:00
|
|
|
var archive io.Reader
|
|
|
|
var resp *http.Response
|
2013-02-13 20:10:00 -05:00
|
|
|
|
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-03-21 20:35:49 -04:00
|
|
|
src := cmd.Arg(0)
|
|
|
|
if src == "" {
|
2013-02-13 20:10:00 -05:00
|
|
|
return errors.New("Not enough arguments")
|
2013-03-21 20:35:49 -04:00
|
|
|
} else if src == "-" {
|
2013-03-12 00:04:16 -04:00
|
|
|
archive = stdin
|
|
|
|
} else {
|
2013-03-21 20:35:49 -04:00
|
|
|
u, err := url.Parse(src)
|
2013-03-12 00:04:16 -04:00
|
|
|
if err != nil {
|
2013-02-28 19:30:31 -05:00
|
|
|
return err
|
2013-03-12 00:04:16 -04:00
|
|
|
}
|
|
|
|
if u.Scheme == "" {
|
|
|
|
u.Scheme = "http"
|
|
|
|
}
|
|
|
|
fmt.Fprintf(stdout, "Downloading from %s\n", u.String())
|
|
|
|
// Download with curl (pretty progress bar)
|
|
|
|
// If curl is not available, fallback to http.Get()
|
2013-03-21 03:54:54 -04:00
|
|
|
resp, err = Download(u.String(), stdout)
|
2013-03-12 00:04:16 -04:00
|
|
|
if err != nil {
|
2013-03-13 14:33:48 -04:00
|
|
|
return err
|
2013-02-28 19:30:31 -05:00
|
|
|
}
|
2013-03-21 03:54:54 -04:00
|
|
|
archive = ProgressReader(resp.Body, int(resp.ContentLength), stdout)
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-03-21 20:35:49 -04:00
|
|
|
img, err := srv.runtime.graph.Create(archive, "", "Imported from "+src)
|
2013-02-13 20:10:00 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-03-21 20:35:49 -04:00
|
|
|
// 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); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2013-02-13 20:10:00 -05:00
|
|
|
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")
|
2013-03-21 03:25:00 -04:00
|
|
|
//limit := cmd.Int("l", 0, "Only show the N most recent versions of each image")
|
2013-02-13 20:10:00 -05:00
|
|
|
quiet := cmd.Bool("q", false, "only show numeric IDs")
|
2013-03-11 18:08:22 -04:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-02-13 20:10:00 -05:00
|
|
|
if cmd.NArg() > 1 {
|
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-03-21 20:35:49 -04:00
|
|
|
var nameFilter string
|
|
|
|
if cmd.NArg() == 1 {
|
|
|
|
nameFilter = cmd.Arg(0)
|
|
|
|
}
|
2013-02-13 20:10:00 -05:00
|
|
|
w := tabwriter.NewWriter(stdout, 20, 1, 3, ' ', 0)
|
2013-02-13 20:28:13 -05:00
|
|
|
if !*quiet {
|
2013-03-21 20:35:49 -04:00
|
|
|
fmt.Fprintf(w, "REPOSITORY\tTAG\tID\tCREATED\tPARENT\n")
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-03-21 20:35:49 -04:00
|
|
|
allImages, err := srv.runtime.graph.Map()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for name, repository := range srv.runtime.repositories.Repositories {
|
|
|
|
if nameFilter != "" && name != nameFilter {
|
|
|
|
continue
|
2013-03-08 13:48:22 -05:00
|
|
|
}
|
2013-03-21 20:35:49 -04:00
|
|
|
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 */ id,
|
|
|
|
/* CREATED */ HumanDuration(time.Now().Sub(image.Created)) + " ago",
|
|
|
|
/* PARENT */ image.Parent,
|
|
|
|
} {
|
|
|
|
if idx == 0 {
|
|
|
|
w.Write([]byte(field))
|
|
|
|
} else {
|
|
|
|
w.Write([]byte("\t" + field))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
w.Write([]byte{'\n'})
|
|
|
|
} else {
|
|
|
|
stdout.Write([]byte(image.Id + "\n"))
|
|
|
|
}
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-03-21 20:35:49 -04:00
|
|
|
}
|
|
|
|
// Display images which aren't part of a
|
2013-03-21 21:59:12 -04:00
|
|
|
if nameFilter == "" {
|
2013-03-21 20:35:49 -04:00
|
|
|
for id, image := range allImages {
|
|
|
|
if !*quiet {
|
|
|
|
for idx, field := range []string{
|
|
|
|
/* REPOSITORY */ "",
|
|
|
|
/* TAG */ "",
|
|
|
|
/* ID */ id,
|
|
|
|
/* CREATED */ HumanDuration(time.Now().Sub(image.Created)) + " ago",
|
|
|
|
/* PARENT */ image.Parent,
|
|
|
|
} {
|
|
|
|
if idx == 0 {
|
|
|
|
w.Write([]byte(field))
|
|
|
|
} else {
|
|
|
|
w.Write([]byte("\t" + field))
|
|
|
|
}
|
|
|
|
}
|
2013-03-21 21:59:12 -04:00
|
|
|
w.Write([]byte{'\n'})
|
2013-03-21 20:35:49 -04:00
|
|
|
} else {
|
|
|
|
stdout.Write([]byte(image.Id + "\n"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !*quiet {
|
|
|
|
w.Flush()
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
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)
|
2013-02-13 20:28:13 -05:00
|
|
|
if !*quiet {
|
2013-02-13 20:10:00 -05:00
|
|
|
fmt.Fprintf(w, "ID\tIMAGE\tCOMMAND\tCREATED\tSTATUS\tCOMMENT\n")
|
|
|
|
}
|
2013-03-21 03:41:15 -04:00
|
|
|
for _, container := range srv.runtime.List() {
|
2013-02-13 20:10:00 -05:00
|
|
|
if !container.State.Running && !*fl_all {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !*quiet {
|
|
|
|
command := fmt.Sprintf("%s %s", container.Path, strings.Join(container.Args, " "))
|
|
|
|
if !*fl_full {
|
2013-03-14 05:26:46 -04:00
|
|
|
command = Trunc(command, 20)
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-02-13 20:28:13 -05:00
|
|
|
for idx, field := range []string{
|
|
|
|
/* ID */ container.Id,
|
2013-03-21 03:25:00 -04:00
|
|
|
/* IMAGE */ container.Image,
|
2013-02-13 20:28:13 -05:00
|
|
|
/* COMMAND */ command,
|
2013-03-21 03:52:43 -04:00
|
|
|
/* CREATED */ HumanDuration(time.Now().Sub(container.Created)) + " ago",
|
2013-02-13 20:28:13 -05:00
|
|
|
/* STATUS */ container.State.String(),
|
2013-03-21 03:25:00 -04:00
|
|
|
/* COMMENT */ "",
|
2013-02-13 20:10:00 -05:00
|
|
|
} {
|
|
|
|
if idx == 0 {
|
|
|
|
w.Write([]byte(field))
|
|
|
|
} else {
|
|
|
|
w.Write([]byte("\t" + field))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
w.Write([]byte{'\n'})
|
|
|
|
} else {
|
|
|
|
stdout.Write([]byte(container.Id + "\n"))
|
|
|
|
}
|
|
|
|
}
|
2013-02-13 20:28:13 -05:00
|
|
|
if !*quiet {
|
2013-02-13 20:10:00 -05:00
|
|
|
w.Flush()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (srv *Server) CmdCommit(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
|
|
|
cmd := rcli.Subcmd(stdout,
|
2013-03-21 23:07:37 -04:00
|
|
|
"commit", "[OPTIONS] CONTAINER [REPOSITORY [TAG]]",
|
2013-02-13 20:10:00 -05:00
|
|
|
"Create a new image from a container's changes")
|
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-03-21 23:07:37 -04:00
|
|
|
containerName, repository, tag := cmd.Arg(0), cmd.Arg(1), cmd.Arg(2)
|
|
|
|
if containerName == "" {
|
2013-02-13 20:10:00 -05:00
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-03-21 23:07:37 -04:00
|
|
|
img, err := srv.runtime.Commit(containerName, repository, tag)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-03-21 23:07:37 -04:00
|
|
|
fmt.Fprintln(stdout, img.Id)
|
|
|
|
return nil
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
|
2013-03-21 04:23:00 -04:00
|
|
|
func (srv *Server) CmdExport(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
2013-02-13 20:10:00 -05:00
|
|
|
cmd := rcli.Subcmd(stdout,
|
2013-03-21 04:23:00 -04:00
|
|
|
"export", "CONTAINER",
|
|
|
|
"Export the contents of a filesystem as a tar archive")
|
2013-02-13 20:10:00 -05:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
name := cmd.Arg(0)
|
2013-03-21 03:41:15 -04:00
|
|
|
if container := srv.runtime.Get(name); container != nil {
|
2013-03-21 03:25:00 -04:00
|
|
|
data, err := container.Export()
|
2013-02-13 20:10:00 -05:00
|
|
|
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")
|
|
|
|
}
|
2013-03-21 03:41:15 -04:00
|
|
|
if container := srv.runtime.Get(cmd.Arg(0)); container == nil {
|
2013-02-13 20:10:00 -05:00
|
|
|
return errors.New("No such container")
|
|
|
|
} else {
|
2013-03-21 03:25:00 -04:00
|
|
|
changes, err := container.Changes()
|
2013-02-13 20:10:00 -05:00
|
|
|
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", "[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)
|
2013-03-21 03:41:15 -04:00
|
|
|
if container := srv.runtime.Get(name); container != nil {
|
2013-03-21 03:25:00 -04:00
|
|
|
log_stdout, err := container.ReadLog("stdout")
|
|
|
|
if err != nil {
|
2013-02-13 20:10:00 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-03-21 03:25:00 -04:00
|
|
|
log_stderr, 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, log_stdout); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := io.Copy(stdout, log_stderr); err != nil {
|
2013-02-13 20:10:00 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return errors.New("No such container: " + cmd.Arg(0))
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
2013-03-21 03:41:15 -04:00
|
|
|
container := srv.runtime.Get(name)
|
2013-02-13 20:10:00 -05:00
|
|
|
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)
|
2013-02-13 20:28:13 -05:00
|
|
|
go func() { io.Copy(c_stdin, stdin); wg.Add(-1) }()
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
if *fl_o {
|
|
|
|
c_stdout, err := container.StdoutPipe()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
wg.Add(1)
|
2013-02-13 20:28:13 -05:00
|
|
|
go func() { io.Copy(stdout, c_stdout); wg.Add(-1) }()
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
if *fl_e {
|
|
|
|
c_stderr, err := container.StderrPipe()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
wg.Add(1)
|
2013-02-13 20:28:13 -05:00
|
|
|
go func() { io.Copy(stdout, c_stderr); wg.Add(-1) }()
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-02-28 14:52:22 -05:00
|
|
|
// Ports type - Used to parse multiple -p flags
|
|
|
|
type ports []int
|
|
|
|
|
|
|
|
func (p *ports) String() string {
|
|
|
|
return fmt.Sprint(*p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ports) Set(value string) error {
|
|
|
|
port, err := strconv.Atoi(value)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Invalid port: %v", value)
|
|
|
|
}
|
|
|
|
*p = append(*p, port)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-02-13 20:10:00 -05:00
|
|
|
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")
|
2013-02-13 20:41:50 -05:00
|
|
|
fl_user := cmd.String("u", "", "Username or UID")
|
2013-02-13 20:10:00 -05:00
|
|
|
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")
|
2013-03-11 22:51:24 -04:00
|
|
|
fl_memory := cmd.Int64("m", 0, "Memory limit (in bytes)")
|
2013-02-28 14:52:22 -05:00
|
|
|
var fl_ports ports
|
2013-03-11 22:58:39 -04:00
|
|
|
|
2013-02-28 14:52:22 -05:00
|
|
|
cmd.Var(&fl_ports, "p", "Map a network port to the container")
|
2013-02-13 20:10:00 -05:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
name := cmd.Arg(0)
|
2013-02-13 20:28:13 -05:00
|
|
|
var cmdline []string
|
2013-03-12 18:08:10 -04:00
|
|
|
|
2013-02-13 20:10:00 -05:00
|
|
|
if len(cmd.Args()) >= 2 {
|
|
|
|
cmdline = cmd.Args()[1:]
|
|
|
|
}
|
|
|
|
// Choose a default image if needed
|
|
|
|
if name == "" {
|
|
|
|
name = "base"
|
|
|
|
}
|
2013-03-12 18:08:10 -04:00
|
|
|
|
2013-02-13 20:10:00 -05:00
|
|
|
// Choose a default command if needed
|
|
|
|
if len(cmdline) == 0 {
|
|
|
|
*fl_stdin = true
|
|
|
|
*fl_tty = true
|
|
|
|
*fl_attach = true
|
|
|
|
cmdline = []string{"/bin/bash", "-i"}
|
|
|
|
}
|
2013-03-11 22:58:39 -04:00
|
|
|
|
2013-02-13 20:10:00 -05:00
|
|
|
// Create new container
|
2013-03-21 03:41:15 -04:00
|
|
|
container, err := srv.runtime.Create(cmdline[0], cmdline[1:], name,
|
2013-03-21 03:25:00 -04:00
|
|
|
&Config{
|
|
|
|
Ports: fl_ports,
|
|
|
|
User: *fl_user,
|
|
|
|
Tty: *fl_tty,
|
|
|
|
OpenStdin: *fl_stdin,
|
|
|
|
Memory: *fl_memory,
|
|
|
|
})
|
2013-02-13 20:10:00 -05:00
|
|
|
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 {
|
2013-03-21 04:13:55 -04:00
|
|
|
Go(func() error {
|
2013-02-13 20:28:13 -05:00
|
|
|
_, err := io.Copy(cmd_stdin, stdin)
|
2013-02-13 20:10:00 -05:00
|
|
|
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
|
|
|
|
}
|
2013-03-21 04:13:55 -04:00
|
|
|
sending_stdout := Go(func() error {
|
2013-02-13 20:28:13 -05:00
|
|
|
_, err := io.Copy(stdout, cmd_stdout)
|
2013-02-13 20:10:00 -05:00
|
|
|
return err
|
|
|
|
})
|
2013-03-21 04:13:55 -04:00
|
|
|
sending_stderr := Go(func() error {
|
2013-02-13 20:28:13 -05:00
|
|
|
_, err := io.Copy(stdout, cmd_stderr)
|
2013-02-13 20:10:00 -05:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2013-03-14 05:26:46 -04:00
|
|
|
func NewServer() (*Server, error) {
|
2013-03-21 04:07:07 -04:00
|
|
|
rand.Seed(time.Now().UTC().UnixNano())
|
2013-03-21 05:04:10 -04:00
|
|
|
if runtime.GOARCH != "amd64" {
|
|
|
|
log.Fatalf("The docker runtime currently only supports amd64 (not %s). This will change in the future. Aborting.", runtime.GOARCH)
|
|
|
|
}
|
2013-03-08 13:48:22 -05:00
|
|
|
// if err != nil {
|
|
|
|
// return nil, err
|
|
|
|
// }
|
2013-03-21 20:47:23 -04:00
|
|
|
runtime, err := NewRuntime()
|
2013-02-13 20:10:00 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
srv := &Server{
|
2013-03-21 03:41:15 -04:00
|
|
|
runtime: runtime,
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
return srv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type Server struct {
|
2013-03-21 03:41:15 -04:00
|
|
|
runtime *Runtime
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|