2013-03-14 05:26:46 -04:00
|
|
|
package docker
|
2013-02-13 20:10:00 -05:00
|
|
|
|
|
|
|
import (
|
2013-04-22 12:17:47 -04:00
|
|
|
_"bytes"
|
2013-02-13 20:28:13 -05:00
|
|
|
"encoding/json"
|
2013-04-22 12:17:47 -04:00
|
|
|
"flag"
|
2013-02-13 20:10:00 -05:00
|
|
|
"fmt"
|
2013-04-22 12:17:47 -04:00
|
|
|
_"io"
|
|
|
|
"io/ioutil"
|
2013-03-13 14:33:48 -04:00
|
|
|
"net/http"
|
2013-03-13 21:37:00 -04:00
|
|
|
"net/url"
|
2013-04-22 12:17:47 -04:00
|
|
|
"os"
|
2013-02-28 14:52:22 -05:00
|
|
|
"strconv"
|
2013-02-13 20:28:13 -05:00
|
|
|
"text/tabwriter"
|
2013-02-13 20:10:00 -05:00
|
|
|
)
|
|
|
|
|
2013-04-09 16:00:50 -04:00
|
|
|
const VERSION = "0.1.4"
|
2013-02-13 20:10:00 -05:00
|
|
|
|
2013-04-11 15:58:23 -04:00
|
|
|
var (
|
|
|
|
GIT_COMMIT string
|
|
|
|
NO_MEMORY_LIMIT bool
|
|
|
|
)
|
2013-04-01 14:12:56 -04:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
func ParseCommands(args []string) error {
|
|
|
|
|
|
|
|
cmds := map[string]func(args []string) error{
|
|
|
|
"images": CmdImages,
|
|
|
|
"info": CmdInfo,
|
|
|
|
"history": CmdHistory,
|
|
|
|
"kill": CmdKill,
|
|
|
|
"logs": CmdLogs,
|
|
|
|
"ps": CmdPs,
|
|
|
|
"restart": CmdRestart,
|
|
|
|
"rm": CmdRm,
|
|
|
|
"rmi": CmdRmi,
|
|
|
|
"start": CmdStart,
|
|
|
|
"stop": CmdStop,
|
|
|
|
"version": CmdVersion,
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(args) > 0 {
|
|
|
|
cmd, exists := cmds[args[0]]
|
|
|
|
if !exists {
|
|
|
|
//TODO display commend not found
|
|
|
|
return cmdHelp(args)
|
|
|
|
}
|
|
|
|
return cmd(args[1:])
|
|
|
|
}
|
|
|
|
return cmdHelp(args)
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
func cmdHelp(args []string) error {
|
2013-02-13 20:10:00 -05:00
|
|
|
help := "Usage: docker COMMAND [arg...]\n\nA self-sufficient runtime for linux containers.\n\nCommands:\n"
|
2013-03-30 03:36:27 -04:00
|
|
|
for _, cmd := range [][]string{
|
2013-04-22 12:17:47 -04:00
|
|
|
// {"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"},
|
2013-03-22 21:15:44 -04:00
|
|
|
{"history", "Show the history of an image"},
|
2013-02-13 20:10:00 -05:00
|
|
|
{"images", "List images"},
|
2013-04-22 12:17:47 -04:00
|
|
|
// {"import", "Create a new filesystem image from the contents of a tarball"},
|
2013-02-13 20:10:00 -05:00
|
|
|
{"info", "Display system-wide information"},
|
2013-04-22 12:17:47 -04:00
|
|
|
// {"inspect", "Return low-level information on a container"},
|
2013-03-11 19:11:46 -04:00
|
|
|
{"kill", "Kill a running container"},
|
2013-04-22 12:17:47 -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"},
|
2013-04-22 12:17:47 -04:00
|
|
|
// {"port", "Lookup the public-facing port which is NAT-ed to PRIVATE_PORT"},
|
2013-03-11 19:11:46 -04:00
|
|
|
{"ps", "List containers"},
|
2013-04-22 12:17:47 -04:00
|
|
|
// {"pull", "Pull an image or a repository from the docker registry server"},
|
|
|
|
// {"push", "Push an image or a repository to the docker registry server"},
|
2013-03-11 19:11:46 -04:00
|
|
|
{"restart", "Restart a running container"},
|
|
|
|
{"rm", "Remove a container"},
|
2013-03-15 03:47:02 -04:00
|
|
|
{"rmi", "Remove an image"},
|
2013-04-22 12:17:47 -04:00
|
|
|
// {"run", "Run a command in a new container"},
|
2013-03-11 19:11:46 -04:00
|
|
|
{"start", "Start a stopped container"},
|
|
|
|
{"stop", "Stop a running container"},
|
2013-04-22 12:17:47 -04:00
|
|
|
// {"tag", "Tag an image into a repository"},
|
2013-03-12 20:34:15 -04:00
|
|
|
{"version", "Show the docker version information"},
|
2013-04-22 12:17:47 -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
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
fmt.Println(help)
|
|
|
|
return nil
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-03-14 20:43:59 -04:00
|
|
|
// 'docker login': login / register a user to registry service.
|
2013-04-03 15:25:19 -04:00
|
|
|
func (srv *Server) CmdLogin(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
|
2013-03-28 15:11:47 -04:00
|
|
|
// Read a line on raw terminal with support for simple backspace
|
|
|
|
// sequences and echo.
|
|
|
|
//
|
2013-03-30 03:22:24 -04:00
|
|
|
// This function is necessary because the login command must be done in a
|
2013-03-28 15:11:47 -04:00
|
|
|
// 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.
|
2013-04-04 23:19:06 -04:00
|
|
|
var readStringOnRawTerminal = func(stdin io.Reader, stdout io.Writer, echo bool) string {
|
2013-03-28 15:11:47 -04:00
|
|
|
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' {
|
2013-04-10 22:08:46 -04:00
|
|
|
stdout.Write([]byte{'\r', '\n'})
|
2013-03-28 15:11:47 -04:00
|
|
|
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 {
|
2013-04-10 22:08:46 -04:00
|
|
|
fmt.Fprintf(stdout, "Read error: %v\r\n", err)
|
2013-03-28 15:11:47 -04:00
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return string(buffer[:i])
|
|
|
|
}
|
2013-04-04 23:19:06 -04:00
|
|
|
var readAndEchoString = func(stdin io.Reader, stdout io.Writer) string {
|
2013-03-28 15:11:47 -04:00
|
|
|
return readStringOnRawTerminal(stdin, stdout, true)
|
|
|
|
}
|
2013-04-04 23:19:06 -04:00
|
|
|
var readString = func(stdin io.Reader, stdout io.Writer) string {
|
2013-03-28 15:11:47 -04:00
|
|
|
return readStringOnRawTerminal(stdin, stdout, false)
|
|
|
|
}
|
|
|
|
|
2013-04-03 15:25:19 -04:00
|
|
|
stdout.SetOptionRawTerminal()
|
|
|
|
|
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-28 15:11:47 -04:00
|
|
|
|
2013-03-14 20:43:59 -04:00
|
|
|
var username string
|
|
|
|
var password string
|
|
|
|
var email string
|
|
|
|
|
2013-03-22 05:19:39 -04:00
|
|
|
fmt.Fprint(stdout, "Username (", srv.runtime.authConfig.Username, "): ")
|
2013-03-28 15:11:47 -04:00
|
|
|
username = readAndEchoString(stdin, stdout)
|
2013-03-14 20:43:59 -04:00
|
|
|
if username == "" {
|
2013-03-22 05:19:39 -04:00
|
|
|
username = srv.runtime.authConfig.Username
|
2013-03-14 20:43:59 -04:00
|
|
|
}
|
2013-03-22 05:19:39 -04:00
|
|
|
if username != srv.runtime.authConfig.Username {
|
2013-03-14 20:43:59 -04:00
|
|
|
fmt.Fprint(stdout, "Password: ")
|
2013-03-28 15:11:47 -04:00
|
|
|
password = readString(stdin, stdout)
|
2013-03-14 20:43:59 -04:00
|
|
|
|
2013-03-15 10:49:27 -04:00
|
|
|
if password == "" {
|
2013-03-29 11:19:42 -04:00
|
|
|
return fmt.Errorf("Error : Password Required")
|
2013-03-15 10:49:27 -04:00
|
|
|
}
|
|
|
|
|
2013-03-22 05:19:39 -04:00
|
|
|
fmt.Fprint(stdout, "Email (", srv.runtime.authConfig.Email, "): ")
|
2013-03-28 15:11:47 -04:00
|
|
|
email = readAndEchoString(stdin, stdout)
|
2013-03-14 20:43:59 -04:00
|
|
|
if email == "" {
|
2013-03-22 05:19:39 -04:00
|
|
|
email = srv.runtime.authConfig.Email
|
2013-03-14 20:43:59 -04:00
|
|
|
}
|
|
|
|
} else {
|
2013-03-22 05:19:39 -04:00
|
|
|
password = srv.runtime.authConfig.Password
|
|
|
|
email = srv.runtime.authConfig.Email
|
2013-03-14 20:43:59 -04:00
|
|
|
}
|
2013-03-22 08:52:13 -04:00
|
|
|
newAuthConfig := auth.NewAuthConfig(username, password, email, srv.runtime.root)
|
2013-03-14 20:43:59 -04:00
|
|
|
status, err := auth.Login(newAuthConfig)
|
|
|
|
if err != nil {
|
2013-04-10 22:08:46 -04:00
|
|
|
fmt.Fprintf(stdout, "Error: %s\r\n", err)
|
2013-03-22 21:37:53 -04:00
|
|
|
} else {
|
|
|
|
srv.runtime.authConfig = newAuthConfig
|
2013-03-14 20:43:59 -04:00
|
|
|
}
|
2013-03-14 23:21:03 -04:00
|
|
|
if status != "" {
|
2013-03-30 03:23:12 -04:00
|
|
|
fmt.Fprint(stdout, status)
|
2013-03-14 23:21:03 -04:00
|
|
|
}
|
2013-03-14 20:43:59 -04:00
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
*/
|
2013-03-14 20:43:59 -04:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-02-26 14:43:54 -05:00
|
|
|
// 'docker wait': block until a container stops
|
2013-04-04 23:19:06 -04:00
|
|
|
func (srv *Server) CmdWait(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
2013-04-12 06:26:31 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "wait", "CONTAINER [CONTAINER...]", "Block until a container stops, then print its exit code.")
|
2013-02-26 14:43:54 -05:00
|
|
|
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 {
|
2013-03-29 11:19:42 -04:00
|
|
|
return fmt.Errorf("No such container: %s", name)
|
2013-02-26 14:43:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
*/
|
|
|
|
|
2013-02-26 14:43:54 -05:00
|
|
|
|
2013-03-12 20:34:15 -04:00
|
|
|
// 'docker version': show version information
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdVersion(args []string) error {
|
|
|
|
cmd := Subcmd("version", "", "Show the docker version information.")
|
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if cmd.NArg() > 0 {
|
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
body, err := call("GET", "version")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var out VersionOut
|
|
|
|
err = json.Unmarshal(body, &out)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Println("Version:", out.Version)
|
|
|
|
fmt.Println("Git Commit:", out.GitCommit)
|
|
|
|
if out.MemoryLimitDisabled {
|
|
|
|
fmt.Println("Memory limit disabled")
|
2013-04-11 15:58:23 -04:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
2013-03-12 20:34:15 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-02-13 20:10:00 -05:00
|
|
|
// 'docker info': display system-wide information.
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdInfo(args []string) error {
|
|
|
|
cmd := Subcmd("info", "", "Display system-wide information")
|
2013-03-11 19:11:46 -04:00
|
|
|
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-03-30 13:33:10 -04:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
body, err := call("GET", "info")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var out InfoOut
|
|
|
|
err = json.Unmarshal(body, &out)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Printf("containers: %d\nversion: %s\nimages: %d\n", out.Containers, out.Version, out.Images)
|
|
|
|
if out.Debug {
|
|
|
|
fmt.Println("debug mode enabled")
|
|
|
|
fmt.Printf("fds: %d\ngoroutines: %d\n", out.NFd, out.NGoroutines)
|
2013-03-30 13:33:10 -04:00
|
|
|
}
|
2013-02-13 20:10:00 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdStop(args []string) error {
|
|
|
|
cmd := Subcmd("stop", "CONTAINER [CONTAINER...]", "Stop a running container")
|
2013-02-13 20:10:00 -05:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if cmd.NArg() < 1 {
|
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
for _, name := range args {
|
|
|
|
_, err := call("GET", "/containers/"+name+"/stop")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("%s", err)
|
2013-02-13 20:10:00 -05:00
|
|
|
} else {
|
2013-04-22 12:17:47 -04:00
|
|
|
fmt.Println(name)
|
2013-02-14 16:49:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdRestart(args []string) error {
|
|
|
|
cmd := Subcmd("restart", "CONTAINER [CONTAINER...]", "Restart a running container")
|
2013-02-14 16:49:05 -05:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if cmd.NArg() < 1 {
|
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
for _, name := range args {
|
|
|
|
_, err := call("GET", "/containers/"+name+"/restart")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("%s", err)
|
2013-02-14 16:49:05 -05:00
|
|
|
} else {
|
2013-04-22 12:17:47 -04:00
|
|
|
fmt.Println(name)
|
2013-02-14 16:49:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdStart(args []string) error {
|
|
|
|
cmd := Subcmd("start", "CONTAINER [CONTAINER...]", "Restart a stopped container")
|
2013-02-14 16:49:05 -05:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if cmd.NArg() < 1 {
|
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
for _, name := range args {
|
|
|
|
_, err := call("GET", "/containers/"+name+"/start")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("%s", err)
|
2013-02-14 16:49:05 -05:00
|
|
|
} else {
|
2013-04-22 12:17:47 -04:00
|
|
|
fmt.Println(name)
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-04-04 23:19:06 -04:00
|
|
|
func (srv *Server) CmdInspect(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
2013-04-12 06:26:31 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "inspect", "CONTAINER", "Return low-level information on a container")
|
2013-02-13 20:10:00 -05:00
|
|
|
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-23 17:18:35 -04:00
|
|
|
} else if image, err := srv.runtime.repositories.LookupImage(name); err == nil && image != nil {
|
2013-03-13 16:23:59 -04:00
|
|
|
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-04-22 12:17:47 -04:00
|
|
|
*/
|
2013-02-13 20:10:00 -05:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-04-04 23:19:06 -04:00
|
|
|
func (srv *Server) CmdPort(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
2013-04-12 06:26:31 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "port", "CONTAINER PRIVATE_PORT", "Lookup the public-facing port which is NAT-ed to PRIVATE_PORT")
|
2013-03-06 03:39:03 -05:00
|
|
|
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-29 11:19:42 -04:00
|
|
|
return fmt.Errorf("No such container: %s", name)
|
2013-03-06 03:39:03 -05:00
|
|
|
} 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-04-22 12:17:47 -04:00
|
|
|
*/
|
2013-03-06 03:39:03 -05:00
|
|
|
|
2013-04-11 12:46:47 -04:00
|
|
|
// 'docker rmi IMAGE' removes all images with the name IMAGE
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdRmi(args []string) error {
|
|
|
|
cmd := Subcmd("rmi", "IMAGE [IMAGE...]", "Remove an image")
|
2013-03-25 21:35:31 -04:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if cmd.NArg() < 1 {
|
2013-03-13 14:14:37 -04:00
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
for _, name := range args {
|
|
|
|
_, err := call("DELETE", "/images/"+name)
|
2013-04-10 20:23:42 -04:00
|
|
|
if err != nil {
|
2013-04-22 12:17:47 -04:00
|
|
|
fmt.Printf("%s", err)
|
|
|
|
} else {
|
|
|
|
fmt.Println(name)
|
2013-03-13 14:14:37 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2013-02-13 20:10:00 -05:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdHistory(args []string) error {
|
|
|
|
cmd := Subcmd("history", "IMAGE", "Show the history of an image")
|
2013-03-25 21:33:56 -04:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if cmd.NArg() != 1 {
|
2013-03-22 00:42:18 -04:00
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
body, err := call("GET", "images/"+cmd.Arg(0)+"/history")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var outs []HistoryOut
|
|
|
|
err = json.Unmarshal(body, &outs)
|
2013-03-22 00:42:18 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
|
2013-03-30 03:23:12 -04:00
|
|
|
fmt.Fprintln(w, "ID\tCREATED\tCREATED BY")
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
for _, out := range outs {
|
|
|
|
fmt.Fprintf(w, "%s\t%s\t%s\n", out.Id, out.Created, out.CreatedBy)
|
|
|
|
}
|
|
|
|
w.Flush()
|
|
|
|
return nil
|
2013-03-22 00:42:18 -04:00
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdRm(args []string) error {
|
|
|
|
cmd := Subcmd("rm", "CONTAINER [CONTAINER...]", "Remove a container")
|
2013-02-13 20:10:00 -05:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-11 10:27:01 -04:00
|
|
|
if cmd.NArg() < 1 {
|
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
for _, name := range args {
|
|
|
|
_, err := call("DELETE", "/containers/"+name)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("%s", err)
|
|
|
|
} else {
|
|
|
|
fmt.Println(name)
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 'docker kill NAME' kills a running container
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdKill(args []string) error {
|
|
|
|
cmd := Subcmd("kill", "CONTAINER [CONTAINER...]", "Kill a running container")
|
2013-02-13 20:10:00 -05:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-12 06:26:31 -04:00
|
|
|
if cmd.NArg() < 1 {
|
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
for _, name := range args {
|
|
|
|
_, err := call("POST", "/containers/"+name+"/kill")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("%s", err)
|
|
|
|
} else {
|
|
|
|
fmt.Println(name)
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-04-09 13:02:57 -04:00
|
|
|
func (srv *Server) CmdImport(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
|
|
|
|
stdout.Flush()
|
2013-04-12 06:26:31 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "import", "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-04-12 06:26:31 -04:00
|
|
|
if cmd.NArg() < 1 {
|
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-03-21 20:35:49 -04:00
|
|
|
src := cmd.Arg(0)
|
2013-04-12 06:26:31 -04:00
|
|
|
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"
|
2013-03-22 22:47:32 -04:00
|
|
|
u.Host = src
|
|
|
|
u.Path = ""
|
2013-03-12 00:04:16 -04:00
|
|
|
}
|
2013-03-30 03:23:12 -04:00
|
|
|
fmt.Fprintln(stdout, "Downloading from", u)
|
2013-03-12 00:04:16 -04:00
|
|
|
// 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-22 00:13:27 -04:00
|
|
|
img, err := srv.runtime.graph.Create(archive, nil, "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
|
2013-03-22 21:27:18 -04:00
|
|
|
if err := srv.runtime.repositories.Set(repository, tag, img.Id, true); err != nil {
|
2013-03-21 20:35:49 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2013-04-01 01:11:55 -04:00
|
|
|
fmt.Fprintln(stdout, img.ShortId())
|
2013-02-13 20:10:00 -05:00
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
*/
|
2013-02-13 20:10:00 -05:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-04-03 15:25:19 -04:00
|
|
|
func (srv *Server) CmdPush(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
|
2013-03-22 21:17:49 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "push", "NAME", "Push an image or a repository to the registry")
|
2013-03-21 06:53:27 -04:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-03-22 09:38:54 -04:00
|
|
|
local := cmd.Arg(0)
|
|
|
|
|
|
|
|
if local == "" {
|
2013-03-21 06:53:27 -04:00
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-03-22 09:38:54 -04:00
|
|
|
// If the login failed, abort
|
2013-03-22 22:04:12 -04:00
|
|
|
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')")
|
|
|
|
}
|
2013-03-22 06:43:57 -04:00
|
|
|
}
|
|
|
|
|
2013-03-22 10:10:52 -04:00
|
|
|
var remote string
|
|
|
|
|
|
|
|
tmp := strings.SplitN(local, "/", 2)
|
|
|
|
if len(tmp) == 1 {
|
2013-03-22 20:58:00 -04:00
|
|
|
return fmt.Errorf(
|
|
|
|
"Impossible to push a \"root\" repository. Please rename your repository in <user>/<repo> (ex: %s/%s)",
|
|
|
|
srv.runtime.authConfig.Username, local)
|
2013-03-22 09:38:54 -04:00
|
|
|
} else {
|
2013-03-22 10:10:52 -04:00
|
|
|
remote = local
|
2013-03-22 09:38:54 -04:00
|
|
|
}
|
|
|
|
|
2013-03-22 16:10:17 -04:00
|
|
|
Debugf("Pushing [%s] to [%s]\n", local, remote)
|
|
|
|
|
2013-03-22 04:25:27 -04:00
|
|
|
// 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))
|
2013-03-22 09:38:54 -04:00
|
|
|
img, err := srv.runtime.graph.Get(local)
|
2013-03-21 06:53:27 -04:00
|
|
|
if err != nil {
|
2013-03-22 16:10:17 -04:00
|
|
|
Debugf("The push refers to a repository [%s] (len: %d)\n", local, len(srv.runtime.repositories.Repositories[local]))
|
2013-03-22 04:25:27 -04:00
|
|
|
// If it fails, try to get the repository
|
2013-03-22 09:38:54 -04:00
|
|
|
if localRepo, exists := srv.runtime.repositories.Repositories[local]; exists {
|
2013-03-22 16:21:44 -04:00
|
|
|
if err := srv.runtime.graph.PushRepository(stdout, remote, localRepo, srv.runtime.authConfig); err != nil {
|
2013-03-22 04:25:27 -04:00
|
|
|
return err
|
|
|
|
}
|
2013-03-22 06:10:09 -04:00
|
|
|
return nil
|
2013-03-22 04:25:27 -04:00
|
|
|
}
|
2013-04-03 05:08:32 -04:00
|
|
|
|
|
|
|
return err
|
2013-03-21 06:53:27 -04:00
|
|
|
}
|
2013-03-22 16:21:44 -04:00
|
|
|
err = srv.runtime.graph.PushImage(stdout, img, srv.runtime.authConfig)
|
2013-03-22 06:10:09 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2013-03-21 06:53:27 -04:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
*/
|
2013-03-21 06:53:27 -04:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-04-04 23:19:06 -04:00
|
|
|
func (srv *Server) CmdPull(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
2013-03-22 21:17:49 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "pull", "NAME", "Pull an image or a repository from the registry")
|
2013-03-21 06:53:27 -04:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-03-22 10:56:44 -04:00
|
|
|
remote := cmd.Arg(0)
|
|
|
|
if remote == "" {
|
2013-03-21 06:53:27 -04:00
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-03-22 04:25:27 -04:00
|
|
|
|
2013-04-02 02:52:20 -04:00
|
|
|
// FIXME: CmdPull should be a wrapper around Runtime.Pull()
|
2013-03-22 10:56:44 -04:00
|
|
|
if srv.runtime.graph.LookupRemoteImage(remote, srv.runtime.authConfig) {
|
2013-04-22 17:37:22 -04:00
|
|
|
// if err := srv.runtime.graph.PullImage(stdout, remote, srv.runtime.authConfig); err != nil {
|
|
|
|
// return err
|
|
|
|
// }
|
2013-03-22 06:10:09 -04:00
|
|
|
return nil
|
2013-03-22 04:25:27 -04:00
|
|
|
}
|
|
|
|
// FIXME: Allow pull repo:tag
|
2013-04-22 17:37:22 -04:00
|
|
|
//if err := srv.runtime.graph.PullRepository(stdout, remote, "", srv.runtime.repositories, srv.runtime.authConfig); err != nil {
|
|
|
|
// return err
|
|
|
|
//}
|
2013-03-22 06:10:09 -04:00
|
|
|
return nil
|
2013-03-21 06:53:27 -04:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
*/
|
2013-03-21 06:53:27 -04:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdImages(args []string) error {
|
|
|
|
cmd := Subcmd("images", "[OPTIONS] [NAME]", "List images")
|
2013-02-13 20:10:00 -05:00
|
|
|
quiet := cmd.Bool("q", false, "only show numeric IDs")
|
2013-04-22 12:17:47 -04:00
|
|
|
all := cmd.Bool("a", false, "show all images")
|
|
|
|
|
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-04-22 12:17:47 -04:00
|
|
|
v := url.Values{}
|
2013-03-21 20:35:49 -04:00
|
|
|
if cmd.NArg() == 1 {
|
2013-04-22 12:17:47 -04:00
|
|
|
v.Set("filter", cmd.Arg(0))
|
2013-03-21 20:35:49 -04:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
if *quiet {
|
|
|
|
v.Set("quiet", "true")
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
if *all {
|
|
|
|
v.Set("all", "true")
|
2013-03-23 20:03:30 -04:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
body, err := call("GET", "images?"+v.Encode())
|
2013-03-21 20:35:49 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
var outs []ImagesOut
|
|
|
|
err = json.Unmarshal(body, &outs)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2013-03-21 20:35:49 -04:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
|
|
|
|
if !*quiet {
|
|
|
|
fmt.Fprintln(w, "REPOSITORY\tTAG\tID\tCREATED")
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, out := range outs {
|
|
|
|
if !*quiet {
|
|
|
|
fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", out.Repository, out.Tag, out.Id, out.Created)
|
|
|
|
} else {
|
|
|
|
fmt.Fprintln(w, out.Id)
|
2013-03-21 20:35:49 -04:00
|
|
|
}
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
2013-03-21 20:35:49 -04:00
|
|
|
if !*quiet {
|
|
|
|
w.Flush()
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdPs(args []string) error {
|
|
|
|
cmd := Subcmd("ps", "[OPTIONS]", "List containers")
|
2013-02-13 20:10:00 -05:00
|
|
|
quiet := cmd.Bool("q", false, "Only display numeric IDs")
|
2013-04-22 12:17:47 -04:00
|
|
|
all := cmd.Bool("a", false, "Show all containers. Only running containers are shown by default.")
|
|
|
|
noTrunc := cmd.Bool("notrunc", false, "Don't truncate output")
|
|
|
|
nLatest := cmd.Bool("l", false, "Show only the latest created container, include non-running ones.")
|
|
|
|
last := cmd.Int("n", -1, "Show n last created containers, include non-running ones.")
|
|
|
|
|
2013-02-13 20:10:00 -05:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
v := url.Values{}
|
|
|
|
if *last == -1 && *nLatest {
|
|
|
|
*last = 1
|
|
|
|
}
|
|
|
|
if *quiet {
|
|
|
|
v.Set("quiet", "true")
|
2013-04-10 13:30:57 -04:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
if *all {
|
|
|
|
v.Set("all", "true")
|
|
|
|
}
|
|
|
|
if *noTrunc {
|
|
|
|
v.Set("notrunc", "true")
|
|
|
|
}
|
|
|
|
if *last != -1 {
|
|
|
|
v.Set("n", strconv.Itoa(*last))
|
|
|
|
}
|
|
|
|
|
|
|
|
body, err := call("GET", "containers?"+v.Encode())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var outs []PsOut
|
|
|
|
err = json.Unmarshal(body, &outs)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
|
2013-02-13 20:28:13 -05:00
|
|
|
if !*quiet {
|
2013-04-22 12:17:47 -04:00
|
|
|
fmt.Fprintln(w, "ID\tIMAGE\tCOMMAND\tCREATED\tSTATUS")
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
for _, out := range outs {
|
2013-02-13 20:10:00 -05:00
|
|
|
if !*quiet {
|
2013-04-22 12:17:47 -04:00
|
|
|
fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", out.Id, out.Image, out.Command, out.Status, out.Created)
|
2013-02-13 20:10:00 -05:00
|
|
|
} else {
|
2013-04-22 12:17:47 -04:00
|
|
|
fmt.Fprintln(w, out.Id)
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
2013-02-13 20:28:13 -05:00
|
|
|
if !*quiet {
|
2013-02-13 20:10:00 -05:00
|
|
|
w.Flush()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-04-04 23:19:06 -04:00
|
|
|
func (srv *Server) CmdCommit(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
2013-02-13 20:10:00 -05:00
|
|
|
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")
|
2013-03-28 20:12:23 -04:00
|
|
|
flComment := cmd.String("m", "", "Commit message")
|
2013-02-13 20:10:00 -05:00
|
|
|
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-28 20:12:23 -04:00
|
|
|
img, err := srv.runtime.Commit(containerName, repository, tag, *flComment)
|
2013-03-21 23:07:37 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-01 01:11:55 -04:00
|
|
|
fmt.Fprintln(stdout, img.ShortId())
|
2013-03-21 23:07:37 -04:00
|
|
|
return nil
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
*/
|
2013-02-13 20:10:00 -05:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-04-04 23:19:06 -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
|
|
|
|
}
|
2013-03-29 11:19:42 -04:00
|
|
|
return fmt.Errorf("No such container: %s", name)
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
*/
|
2013-02-13 20:10:00 -05:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-04-04 23:19:06 -04:00
|
|
|
func (srv *Server) CmdDiff(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
2013-02-13 20:10:00 -05:00
|
|
|
cmd := rcli.Subcmd(stdout,
|
2013-04-12 06:26:31 -04:00
|
|
|
"diff", "CONTAINER",
|
2013-02-13 20:10:00 -05:00
|
|
|
"Inspect changes on a container's filesystem")
|
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if cmd.NArg() < 1 {
|
2013-04-12 06:26:31 -04:00
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-03-21 03:41:15 -04:00
|
|
|
if container := srv.runtime.Get(cmd.Arg(0)); container == nil {
|
2013-03-29 11:19:42 -04:00
|
|
|
return fmt.Errorf("No such container")
|
2013-02-13 20:10:00 -05:00
|
|
|
} 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
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
*/
|
2013-02-13 20:10:00 -05:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
func CmdLogs(args []string) error {
|
|
|
|
cmd := Subcmd("logs", "CONTAINER", "Fetch the logs of a container")
|
2013-02-13 20:10:00 -05:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if cmd.NArg() != 1 {
|
|
|
|
cmd.Usage()
|
|
|
|
return nil
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
body, err := call("GET", "containers/"+cmd.Arg(0)+"/logs")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
var out LogsOut
|
|
|
|
err = json.Unmarshal(body, &out)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Fprintln(os.Stdout, out.Stdout)
|
|
|
|
fmt.Fprintln(os.Stderr, out.Stderr)
|
|
|
|
|
|
|
|
return nil
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-04-03 15:25:19 -04:00
|
|
|
func (srv *Server) CmdAttach(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
|
2013-03-29 10:49:26 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "attach", "CONTAINER", "Attach to a running container")
|
2013-02-13 20:10:00 -05:00
|
|
|
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 {
|
2013-03-29 11:19:42 -04:00
|
|
|
return fmt.Errorf("No such container: %s", name)
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-02 15:18:20 -04:00
|
|
|
|
2013-04-05 00:51:40 -04:00
|
|
|
if container.Config.Tty {
|
|
|
|
stdout.SetOptionRawTerminal()
|
|
|
|
}
|
2013-04-09 12:59:30 -04:00
|
|
|
// Flush the options to make sure the client sets the raw mode
|
|
|
|
stdout.Flush()
|
2013-04-02 15:18:20 -04:00
|
|
|
return <-container.Attach(stdin, nil, stdout, stdout)
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
*/
|
|
|
|
/*
|
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-04-22 12:17:47 -04:00
|
|
|
*/
|
2013-02-28 14:52:22 -05:00
|
|
|
|
2013-03-22 23:36:34 -04:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2013-04-02 21:07:16 -04:00
|
|
|
// AttachOpts stores arguments to 'docker run -a', eg. which streams to attach to
|
|
|
|
type AttachOpts map[string]bool
|
|
|
|
|
2013-04-03 10:06:35 -04:00
|
|
|
func NewAttachOpts() AttachOpts {
|
|
|
|
return make(AttachOpts)
|
2013-04-02 21:07:16 -04:00
|
|
|
}
|
|
|
|
|
2013-04-03 10:06:35 -04:00
|
|
|
func (opts AttachOpts) String() string {
|
|
|
|
// Cast to underlying map type to avoid infinite recursion
|
|
|
|
return fmt.Sprintf("%v", map[string]bool(opts))
|
2013-04-02 21:07:16 -04:00
|
|
|
}
|
|
|
|
|
2013-04-03 10:06:35 -04:00
|
|
|
func (opts AttachOpts) Set(val string) error {
|
2013-04-02 21:07:16 -04:00
|
|
|
if val != "stdin" && val != "stdout" && val != "stderr" {
|
|
|
|
return fmt.Errorf("Unsupported stream name: %s", val)
|
|
|
|
}
|
2013-04-03 10:06:35 -04:00
|
|
|
opts[val] = true
|
2013-04-02 21:07:16 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-03 10:06:35 -04:00
|
|
|
func (opts AttachOpts) Get(val string) bool {
|
|
|
|
if res, exists := opts[val]; exists {
|
2013-04-02 21:07:16 -04:00
|
|
|
return res
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
|
|
|
|
/*
|
2013-04-04 23:19:06 -04:00
|
|
|
func (srv *Server) CmdTag(stdin io.ReadCloser, stdout io.Writer, args ...string) error {
|
2013-03-22 21:27:18 -04:00
|
|
|
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)
|
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
*/
|
2013-03-22 21:27:18 -04:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
2013-04-03 15:25:19 -04:00
|
|
|
func (srv *Server) CmdRun(stdin io.ReadCloser, stdout rcli.DockerConn, args ...string) error {
|
2013-04-19 09:24:37 -04:00
|
|
|
config, err := ParseRun(args)
|
2013-03-23 15:16:58 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-03-23 15:39:09 -04:00
|
|
|
if config.Image == "" {
|
2013-03-26 11:31:26 -04:00
|
|
|
fmt.Fprintln(stdout, "Error: Image not specified")
|
2013-03-23 15:16:58 -04:00
|
|
|
return fmt.Errorf("Image not specified")
|
|
|
|
}
|
|
|
|
if len(config.Cmd) == 0 {
|
2013-03-26 11:31:26 -04:00
|
|
|
fmt.Fprintln(stdout, "Error: Command not specified")
|
2013-03-23 15:16:58 -04:00
|
|
|
return fmt.Errorf("Command not specified")
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-05 22:48:49 -04:00
|
|
|
|
2013-04-05 00:51:40 -04:00
|
|
|
if config.Tty {
|
|
|
|
stdout.SetOptionRawTerminal()
|
|
|
|
}
|
2013-04-09 12:59:30 -04:00
|
|
|
// Flush the options to make sure the client sets the raw mode
|
|
|
|
// or tell the client there is no options
|
|
|
|
stdout.Flush()
|
2013-03-26 06:05:10 -04:00
|
|
|
|
2013-02-13 20:10:00 -05:00
|
|
|
// Create new container
|
2013-03-23 15:39:09 -04:00
|
|
|
container, err := srv.runtime.Create(config)
|
2013-02-13 20:10:00 -05:00
|
|
|
if err != nil {
|
2013-03-26 06:05:10 -04:00
|
|
|
// If container not found, try to pull it
|
2013-03-26 08:28:17 -04:00
|
|
|
if srv.runtime.graph.IsNotExist(err) {
|
2013-04-13 18:03:24 -04:00
|
|
|
fmt.Fprintf(stdout, "Image %s not found, trying to pull it from registry.\r\n", config.Image)
|
2013-03-26 08:28:17 -04:00
|
|
|
if err = srv.CmdPull(stdin, stdout, config.Image); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if container, err = srv.runtime.Create(config); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
2013-03-26 06:05:10 -04:00
|
|
|
return err
|
|
|
|
}
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-02 21:07:16 -04:00
|
|
|
var (
|
2013-04-02 15:18:20 -04:00
|
|
|
cStdin io.ReadCloser
|
2013-04-02 21:07:16 -04:00
|
|
|
cStdout, cStderr io.Writer
|
|
|
|
)
|
|
|
|
if config.AttachStdin {
|
2013-04-02 15:18:20 -04:00
|
|
|
r, w := io.Pipe()
|
|
|
|
go func() {
|
|
|
|
defer w.Close()
|
|
|
|
defer Debugf("Closing buffered stdin pipe")
|
|
|
|
io.Copy(w, stdin)
|
|
|
|
}()
|
|
|
|
cStdin = r
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-02 21:07:16 -04:00
|
|
|
if config.AttachStdout {
|
|
|
|
cStdout = stdout
|
|
|
|
}
|
|
|
|
if config.AttachStderr {
|
|
|
|
cStderr = stdout // FIXME: rcli can't differentiate stdout from stderr
|
2013-04-02 02:52:20 -04:00
|
|
|
}
|
2013-04-02 15:18:20 -04:00
|
|
|
|
|
|
|
attachErr := container.Attach(cStdin, stdin, cStdout, cStderr)
|
2013-04-02 21:07:16 -04:00
|
|
|
Debugf("Starting\n")
|
2013-04-02 02:52:20 -04:00
|
|
|
if err := container.Start(); err != nil {
|
|
|
|
return err
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-02 21:07:16 -04:00
|
|
|
if cStdout == nil && cStderr == nil {
|
2013-03-31 05:02:01 -04:00
|
|
|
fmt.Fprintln(stdout, container.ShortId())
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-02 21:07:16 -04:00
|
|
|
Debugf("Waiting for attach to return\n")
|
2013-04-02 15:21:35 -04:00
|
|
|
<-attachErr
|
|
|
|
// Expecting I/O pipe error, discarding
|
|
|
|
return nil
|
2013-04-22 12:17:47 -04:00
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
func call(method, path string) ([]byte, error) {
|
|
|
|
req, err := http.NewRequest(method, "http://0.0.0.0:4243/" + path, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
resp, err := http.DefaultClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if resp.StatusCode != 200 {
|
|
|
|
return nil, fmt.Errorf("error: %s", body)
|
|
|
|
}
|
|
|
|
return body, nil
|
|
|
|
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|
2013-04-22 12:17:47 -04:00
|
|
|
/*
|
|
|
|
func apiPost(path string, data interface{}) ([]byte, error) {
|
|
|
|
buf, err := json.Marshal(data)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
dataBuf := bytes.NewBuffer(buf)
|
|
|
|
resp, err := http.Post("http://0.0.0.0:4243/"+path, "application/json", dataBuf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if resp.StatusCode != 200 {
|
|
|
|
return nil, fmt.Errorf("[error] %s", body)
|
|
|
|
}
|
|
|
|
return body, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func apiPostHijack(path string, data interface{}) (io.ReadCloser, error) {
|
|
|
|
buf, err := json.Marshal(data)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
dataBuf := bytes.NewBuffer(buf)
|
|
|
|
resp, err := http.Post("http://0.0.0.0:4243/"+path, "application/json", dataBuf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
//TODO check status code
|
2013-02-13 20:10:00 -05:00
|
|
|
|
2013-04-22 12:17:47 -04:00
|
|
|
return resp.Body, nil
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
func Subcmd(name, signature, description string) *flag.FlagSet {
|
|
|
|
flags := flag.NewFlagSet(name, flag.ContinueOnError)
|
|
|
|
flags.Usage = func() {
|
|
|
|
fmt.Printf("\nUsage: docker %s %s\n\n%s\n\n", name, signature, description)
|
|
|
|
flags.PrintDefaults()
|
|
|
|
}
|
|
|
|
return flags
|
2013-02-13 20:10:00 -05:00
|
|
|
}
|