2013-03-14 05:26:46 -04:00
package docker
2013-02-13 20:10:00 -05:00
import (
2013-06-15 12:38:18 -04:00
"archive/tar"
2013-08-03 19:43:20 -04:00
"bufio"
2013-02-13 20:28:13 -05:00
"bytes"
"encoding/json"
2013-04-22 12:17:47 -04:00
"flag"
2013-02-13 20:10:00 -05:00
"fmt"
2013-03-14 20:43:59 -04:00
"github.com/dotcloud/docker/auth"
2013-04-29 09:12:18 -04:00
"github.com/dotcloud/docker/term"
2013-05-14 18:37:35 -04:00
"github.com/dotcloud/docker/utils"
2013-02-13 20:28:13 -05:00
"io"
2013-04-22 12:17:47 -04:00
"io/ioutil"
2013-04-23 12:20:53 -04:00
"net"
2013-03-13 14:33:48 -04:00
"net/http"
2013-04-23 12:20:53 -04:00
"net/http/httputil"
2013-03-13 21:37:00 -04:00
"net/url"
2013-05-08 18:26:44 -04:00
"os"
2013-05-24 14:07:32 -04:00
"os/signal"
2013-04-05 21:00:10 -04:00
"path/filepath"
2013-05-13 05:48:27 -04:00
"reflect"
2013-08-19 08:05:47 -04:00
"runtime"
2013-02-28 14:52:22 -05:00
"strconv"
2013-02-13 20:28:13 -05:00
"strings"
2013-05-24 14:07:32 -04:00
"syscall"
2013-02-13 20:28:13 -05:00
"text/tabwriter"
"time"
2013-02-13 20:10:00 -05:00
)
2013-04-11 15:58:23 -04:00
var (
2013-06-04 14:00:22 -04:00
GITCOMMIT string
2013-08-26 11:45:52 -04:00
VERSION string
2013-04-11 15:58:23 -04:00
)
2013-04-01 14:12:56 -04:00
2013-05-23 12:32:39 -04:00
func ( cli * DockerCli ) getMethod ( name string ) ( reflect . Method , bool ) {
methodName := "Cmd" + strings . ToUpper ( name [ : 1 ] ) + strings . ToLower ( name [ 1 : ] )
return reflect . TypeOf ( cli ) . MethodByName ( methodName )
}
2013-06-18 14:59:56 -04:00
func ParseCommands ( proto , addr string , args ... string ) error {
2013-06-24 17:15:52 -04:00
cli := NewDockerCli ( os . Stdin , os . Stdout , os . Stderr , proto , addr )
2013-04-22 12:17:47 -04:00
if len ( args ) > 0 {
2013-05-23 12:32:39 -04:00
method , exists := cli . getMethod ( args [ 0 ] )
2013-04-22 12:17:47 -04:00
if ! exists {
2013-04-23 12:20:53 -04:00
fmt . Println ( "Error: Command not found:" , args [ 0 ] )
2013-05-23 12:32:39 -04:00
return cli . CmdHelp ( args [ 1 : ] ... )
2013-04-22 12:17:47 -04:00
}
2013-05-13 05:48:27 -04:00
ret := method . Func . CallSlice ( [ ] reflect . Value {
reflect . ValueOf ( cli ) ,
2013-05-15 10:16:46 -04:00
reflect . ValueOf ( args [ 1 : ] ) ,
2013-05-13 05:48:27 -04:00
} ) [ 0 ] . Interface ( )
if ret == nil {
return nil
2013-04-22 12:17:47 -04:00
}
2013-05-13 05:48:27 -04:00
return ret . ( error )
2013-04-22 12:17:47 -04:00
}
2013-05-13 05:48:27 -04:00
return cli . CmdHelp ( args ... )
2013-02-13 20:10:00 -05:00
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdHelp ( args ... string ) error {
2013-05-23 12:32:39 -04:00
if len ( args ) > 0 {
method , exists := cli . getMethod ( args [ 0 ] )
if ! exists {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . err , "Error: Command not found: %s\n" , args [ 0 ] )
2013-05-23 12:32:39 -04:00
} else {
method . Func . CallSlice ( [ ] reflect . Value {
reflect . ValueOf ( cli ) ,
reflect . ValueOf ( [ ] string { "--help" } ) ,
} ) [ 0 ] . Interface ( )
return nil
}
}
2013-08-21 05:08:32 -04:00
help := fmt . Sprintf ( "Usage: docker [OPTIONS] COMMAND [arg...]\n -H=[unix://%s]: tcp://host:port to bind/connect to or unix://path/to/socket to use\n\nA self-sufficient runtime for linux containers.\n\nCommands:\n" , DEFAULTUNIXSOCKET )
2013-06-24 17:15:52 -04:00
for _ , command := range [ ] [ ] string {
2013-05-30 10:08:26 -04:00
{ "attach" , "Attach to a running container" } ,
{ "build" , "Build a container from a Dockerfile" } ,
{ "commit" , "Create a new image from a container's changes" } ,
2013-07-17 00:07:41 -04:00
{ "cp" , "Copy files/folders from the containers filesystem to the host path" } ,
2013-05-30 10:08:26 -04:00
{ "diff" , "Inspect changes on a container's filesystem" } ,
2013-07-10 08:55:05 -04:00
{ "events" , "Get real time events from the server" } ,
2013-05-30 10:08:26 -04:00
{ "export" , "Stream the contents of a container as a tar archive" } ,
{ "history" , "Show the history of an image" } ,
{ "images" , "List images" } ,
{ "import" , "Create a new filesystem image from the contents of a tarball" } ,
{ "info" , "Display system-wide information" } ,
{ "insert" , "Insert a file in an image" } ,
{ "inspect" , "Return low-level information on a container" } ,
{ "kill" , "Kill a running container" } ,
{ "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" } ,
2013-07-17 13:46:11 -04:00
{ "rm" , "Remove one or more containers" } ,
{ "rmi" , "Remove one or more images" } ,
2013-05-30 10:08:26 -04:00
{ "run" , "Run a command in a new container" } ,
{ "search" , "Search for an image in the docker index" } ,
{ "start" , "Start a stopped container" } ,
{ "stop" , "Stop a running container" } ,
{ "tag" , "Tag an image into a repository" } ,
2013-09-03 10:35:22 -04:00
{ "top" , "Lookup the running processes of a container" } ,
2013-05-30 10:08:26 -04:00
{ "version" , "Show the docker version information" } ,
2013-06-02 17:40:56 -04:00
{ "wait" , "Block until a container stops, then print its exit code" } ,
2013-02-13 20:10:00 -05:00
} {
2013-05-30 10:08:26 -04:00
help += fmt . Sprintf ( " %-10.10s%s\n" , command [ 0 ] , command [ 1 ] )
2013-02-13 20:10:00 -05:00
}
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . err , "%s\n" , help )
2013-04-22 12:17:47 -04:00
return nil
2013-02-13 20:10:00 -05:00
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdInsert ( args ... string ) error {
2013-05-07 13:23:50 -04:00
cmd := Subcmd ( "insert" , "IMAGE URL PATH" , "Insert a file from URL in the IMAGE at PATH" )
2013-04-24 16:37:00 -04:00
if err := cmd . Parse ( args ) ; err != nil {
return nil
}
if cmd . NArg ( ) != 3 {
cmd . Usage ( )
return nil
}
2013-05-07 13:23:50 -04:00
v := url . Values { }
v . Set ( "url" , cmd . Arg ( 1 ) )
v . Set ( "path" , cmd . Arg ( 2 ) )
2013-04-24 18:14:10 -04:00
2013-06-24 17:15:52 -04:00
if err := cli . stream ( "POST" , "/images/" + cmd . Arg ( 0 ) + "/insert?" + v . Encode ( ) , nil , cli . out ) ; err != nil {
2013-04-24 16:37:00 -04:00
return err
}
return nil
}
2013-06-15 12:38:18 -04:00
// mkBuildContext returns an archive of an empty context with the contents
// of `dockerfile` at the path ./Dockerfile
2013-06-15 14:07:49 -04:00
func mkBuildContext ( dockerfile string , files [ ] [ 2 ] string ) ( Archive , error ) {
2013-06-15 12:38:18 -04:00
buf := new ( bytes . Buffer )
tw := tar . NewWriter ( buf )
2013-06-15 14:07:49 -04:00
files = append ( files , [ 2 ] string { "Dockerfile" , dockerfile } )
for _ , file := range files {
name , content := file [ 0 ] , file [ 1 ]
hdr := & tar . Header {
Name : name ,
Size : int64 ( len ( content ) ) ,
}
if err := tw . WriteHeader ( hdr ) ; err != nil {
return nil , err
}
if _ , err := tw . Write ( [ ] byte ( content ) ) ; err != nil {
return nil , err
}
2013-06-15 12:38:18 -04:00
}
if err := tw . Close ( ) ; err != nil {
return nil , err
}
return buf , nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdBuild ( args ... string ) error {
2013-06-13 13:50:55 -04:00
cmd := Subcmd ( "build" , "[OPTIONS] PATH | URL | -" , "Build a new container image from the source code at PATH" )
2013-07-31 11:32:08 -04:00
tag := cmd . String ( "t" , "" , "Repository name (and optionally a tag) to be applied to the resulting image in case of success" )
2013-07-11 20:12:25 -04:00
suppressOutput := cmd . Bool ( "q" , false , "Suppress verbose build output" )
2013-08-02 12:18:54 -04:00
noCache := cmd . Bool ( "no-cache" , false , "Do not use cache when building the image" )
2013-04-24 14:03:01 -04:00
if err := cmd . Parse ( args ) ; err != nil {
return nil
}
2013-05-29 21:18:57 -04:00
if cmd . NArg ( ) != 1 {
cmd . Usage ( )
return nil
}
2013-05-22 23:07:26 -04:00
2013-05-19 13:46:24 -04:00
var (
2013-06-21 01:02:36 -04:00
context Archive
isRemote bool
err error
2013-05-19 13:46:24 -04:00
)
2013-05-07 13:23:50 -04:00
2013-05-29 21:18:57 -04:00
if cmd . Arg ( 0 ) == "-" {
2013-06-15 12:38:18 -04:00
// As a special case, 'docker build -' will build from an empty context with the
// contents of stdin as a Dockerfile
2013-06-24 17:15:52 -04:00
dockerfile , err := ioutil . ReadAll ( cli . in )
2013-05-28 18:22:34 -04:00
if err != nil {
return err
}
2013-06-15 14:07:49 -04:00
context , err = mkBuildContext ( string ( dockerfile ) , nil )
2013-06-21 01:02:36 -04:00
} else if utils . IsURL ( cmd . Arg ( 0 ) ) || utils . IsGIT ( cmd . Arg ( 0 ) ) {
isRemote = true
2013-06-15 12:38:18 -04:00
} else {
2013-08-30 14:08:29 -04:00
if fi , err := os . Stat ( cmd . Arg ( 0 ) ) ; err != nil {
2013-07-22 10:52:05 -04:00
return err
2013-08-30 14:08:29 -04:00
} else if ! fi . IsDir ( ) {
return fmt . Errorf ( "\"%s\" is not a path or URL. Please provide a path to a directory containing a Dockerfile." , cmd . Arg ( 0 ) )
2013-07-22 10:52:05 -04:00
}
2013-06-15 12:38:18 -04:00
context , err = Tar ( cmd . Arg ( 0 ) , Uncompressed )
2013-05-23 21:32:56 -04:00
}
2013-06-21 01:02:36 -04:00
var body io . Reader
2013-06-17 21:26:41 -04:00
// Setup an upload progress bar
2013-08-12 13:53:06 -04:00
// FIXME: ProgressReader shouldn't be this annoying to use
2013-06-21 01:02:36 -04:00
if context != nil {
sf := utils . NewStreamFormatter ( false )
2013-08-06 10:31:51 -04:00
body = utils . ProgressReader ( ioutil . NopCloser ( context ) , 0 , cli . err , sf . FormatProgress ( "" , "Uploading context" , "%v bytes%0.0s%0.0s" ) , sf , true )
2013-05-29 21:18:57 -04:00
}
2013-06-15 12:38:18 -04:00
// Upload the build context
2013-05-30 15:08:21 -04:00
v := & url . Values { }
v . Set ( "t" , * tag )
2013-07-11 20:12:25 -04:00
if * suppressOutput {
v . Set ( "q" , "1" )
}
2013-06-06 19:09:46 -04:00
if isRemote {
v . Set ( "remote" , cmd . Arg ( 0 ) )
}
2013-08-02 12:18:54 -04:00
if * noCache {
v . Set ( "nocache" , "1" )
}
2013-06-20 23:25:59 -04:00
req , err := http . NewRequest ( "POST" , fmt . Sprintf ( "/v%g/build?%s" , APIVERSION , v . Encode ( ) ) , body )
2013-05-23 21:32:56 -04:00
if err != nil {
2013-05-22 23:07:26 -04:00
return err
}
2013-06-21 01:02:36 -04:00
if context != nil {
req . Header . Set ( "Content-Type" , "application/tar" )
2013-05-28 16:38:40 -04:00
}
2013-06-18 14:59:56 -04:00
dial , err := net . Dial ( cli . proto , cli . addr )
if err != nil {
return err
}
clientconn := httputil . NewClientConn ( dial , nil )
resp , err := clientconn . Do ( req )
defer clientconn . Close ( )
2013-05-22 23:07:26 -04:00
if err != nil {
return err
}
defer resp . Body . Close ( )
2013-05-23 21:32:56 -04:00
// Check for errors
2013-05-22 23:07:26 -04:00
if resp . StatusCode < 200 || resp . StatusCode >= 400 {
body , err := ioutil . ReadAll ( resp . Body )
2013-05-19 13:46:24 -04:00
if err != nil {
return err
}
2013-06-10 11:06:52 -04:00
if len ( body ) == 0 {
return fmt . Errorf ( "Error: %s" , http . StatusText ( resp . StatusCode ) )
}
return fmt . Errorf ( "Error: %s" , body )
2013-04-25 14:20:45 -04:00
}
2013-05-22 23:07:26 -04:00
2013-05-23 21:32:56 -04:00
// Output the result
2013-06-24 17:15:52 -04:00
if _ , err := io . Copy ( cli . out , resp . Body ) ; err != nil {
2013-04-25 14:20:45 -04:00
return err
}
2013-05-22 23:07:26 -04:00
2013-04-25 14:20:45 -04:00
return nil
2013-04-24 14:03:01 -04:00
}
2013-03-14 20:43:59 -04:00
// 'docker login': login / register a user to registry service.
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdLogin ( args ... string ) error {
2013-06-21 06:00:25 -04:00
cmd := Subcmd ( "login" , "[OPTIONS]" , "Register or Login to the docker registry server" )
2013-08-03 19:43:20 -04:00
2013-08-18 01:28:05 -04:00
var username , password , email string
cmd . StringVar ( & username , "u" , "" , "username" )
cmd . StringVar ( & password , "p" , "" , "password" )
cmd . StringVar ( & email , "e" , "" , "email" )
2013-06-21 20:37:02 -04:00
err := cmd . Parse ( args )
2013-08-03 19:43:20 -04:00
2013-05-06 07:34:31 -04:00
if err != nil {
2013-03-15 10:49:27 -04:00
return nil
2013-05-06 07:34:31 -04:00
}
2013-04-03 15:25:19 -04:00
2013-08-03 19:43:20 -04:00
promptDefault := func ( prompt string , configDefault string ) {
2013-07-27 13:00:36 -04:00
if configDefault == "" {
fmt . Fprintf ( cli . out , "%s: " , prompt )
} else {
fmt . Fprintf ( cli . out , "%s (%s): " , prompt , configDefault )
}
}
2013-08-03 20:27:15 -04:00
readInput := func ( in io . Reader , out io . Writer ) string {
2013-08-03 19:43:20 -04:00
reader := bufio . NewReader ( in )
2013-09-01 19:12:07 -04:00
line , _ , err := reader . ReadLine ( )
2013-08-03 19:43:20 -04:00
if err != nil {
2013-08-03 20:27:15 -04:00
fmt . Fprintln ( out , err . Error ( ) )
os . Exit ( 1 )
2013-08-03 19:43:20 -04:00
}
2013-09-01 19:12:07 -04:00
return string ( line )
2013-08-03 19:43:20 -04:00
}
2013-09-01 19:12:07 -04:00
cli . LoadConfigFile ( )
2013-07-23 11:04:31 -04:00
authconfig , ok := cli . configFile . Configs [ auth . IndexServerAddress ( ) ]
if ! ok {
authconfig = auth . AuthConfig { }
}
2013-08-03 19:43:20 -04:00
if username == "" {
2013-07-27 13:17:57 -04:00
promptDefault ( "Username" , authconfig . Username )
2013-08-03 20:27:15 -04:00
username = readInput ( cli . in , cli . out )
2013-06-21 06:00:25 -04:00
if username == "" {
2013-07-23 11:04:31 -04:00
username = authconfig . Username
2013-06-21 06:00:25 -04:00
}
2013-03-14 20:43:59 -04:00
}
2013-08-03 19:43:20 -04:00
2013-07-23 11:04:31 -04:00
if username != authconfig . Username {
2013-08-03 19:43:20 -04:00
if password == "" {
oldState , _ := term . SaveState ( cli . terminalFd )
2013-07-01 08:31:16 -04:00
fmt . Fprintf ( cli . out , "Password: " )
2013-08-03 19:43:20 -04:00
2013-08-18 00:29:37 -04:00
term . DisableEcho ( cli . terminalFd , oldState )
2013-08-03 20:27:15 -04:00
password = readInput ( cli . in , cli . out )
2013-08-04 00:30:07 -04:00
fmt . Fprint ( cli . out , "\n" )
2013-08-03 19:43:20 -04:00
term . RestoreTerminal ( cli . terminalFd , oldState )
2013-06-21 06:00:25 -04:00
if password == "" {
return fmt . Errorf ( "Error : Password Required" )
}
2013-03-15 10:49:27 -04:00
}
2013-08-03 19:43:20 -04:00
if email == "" {
2013-07-27 13:17:57 -04:00
promptDefault ( "Email" , authconfig . Email )
2013-08-03 20:27:15 -04:00
email = readInput ( cli . in , cli . out )
2013-06-21 06:00:25 -04:00
if email == "" {
2013-07-23 11:04:31 -04:00
email = authconfig . Email
2013-06-21 06:00:25 -04:00
}
2013-03-14 20:43:59 -04:00
}
} else {
2013-07-23 11:04:31 -04:00
password = authconfig . Password
email = authconfig . Email
2013-03-14 20:43:59 -04:00
}
2013-08-03 19:43:20 -04:00
2013-07-23 11:04:31 -04:00
authconfig . Username = username
authconfig . Password = password
authconfig . Email = email
cli . configFile . Configs [ auth . IndexServerAddress ( ) ] = authconfig
2013-05-06 07:34:31 -04:00
2013-07-23 11:04:31 -04:00
body , statusCode , err := cli . call ( "POST" , "/auth" , cli . configFile . Configs [ auth . IndexServerAddress ( ) ] )
2013-06-14 09:38:51 -04:00
if statusCode == 401 {
2013-07-23 11:04:31 -04:00
delete ( cli . configFile . Configs , auth . IndexServerAddress ( ) )
auth . SaveConfig ( cli . configFile )
2013-06-14 09:38:51 -04:00
return err
}
2013-03-14 20:43:59 -04:00
if err != nil {
2013-05-06 07:34:31 -04:00
return err
}
2013-06-04 14:00:22 -04:00
var out2 APIAuth
2013-05-08 17:57:14 -04:00
err = json . Unmarshal ( body , & out2 )
2013-05-06 07:34:31 -04:00
if err != nil {
2013-07-23 11:04:31 -04:00
cli . configFile , _ = auth . LoadConfig ( os . Getenv ( "HOME" ) )
2013-05-06 07:34:31 -04:00
return err
2013-03-14 20:43:59 -04:00
}
2013-07-23 11:04:31 -04:00
auth . SaveConfig ( cli . configFile )
2013-05-06 07:34:31 -04:00
if out2 . Status != "" {
2013-06-27 00:33:55 -04:00
fmt . Fprintf ( cli . out , "%s\n" , out2 . Status )
2013-03-14 23:21:03 -04:00
}
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
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdWait ( args ... string ) error {
2013-04-24 08:01:40 -04:00
cmd := Subcmd ( "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-05-13 05:48:27 -04:00
body , _ , err := cli . call ( "POST" , "/containers/" + name + "/wait" , nil )
2013-04-24 08:01:40 -04:00
if err != nil {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . err , "%s" , err )
2013-02-26 14:43:54 -05:00
} else {
2013-06-04 14:00:22 -04:00
var out APIWait
2013-04-24 08:01:40 -04:00
err = json . Unmarshal ( body , & out )
if err != nil {
return err
}
2013-06-27 00:33:55 -04:00
fmt . Fprintf ( cli . out , "%d\n" , out . StatusCode )
2013-02-26 14:43:54 -05:00
}
}
return nil
}
2013-03-12 20:34:15 -04:00
// 'docker version': show version information
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdVersion ( args ... string ) error {
2013-04-22 12:17:47 -04:00
cmd := Subcmd ( "version" , "" , "Show the docker version information." )
if err := cmd . Parse ( args ) ; err != nil {
return nil
2013-04-19 00:08:33 -04:00
}
2013-05-15 10:16:46 -04:00
2013-04-22 12:17:47 -04:00
if cmd . NArg ( ) > 0 {
cmd . Usage ( )
return nil
}
2013-08-29 20:46:43 -04:00
if VERSION != "" {
fmt . Fprintf ( cli . out , "Client version: %s\n" , VERSION )
}
2013-08-19 08:05:47 -04:00
fmt . Fprintf ( cli . out , "Go version (client): %s\n" , runtime . Version ( ) )
if GITCOMMIT != "" {
fmt . Fprintf ( cli . out , "Git commit (client): %s\n" , GITCOMMIT )
}
2013-05-13 05:48:27 -04:00
body , _ , err := cli . call ( "GET" , "/version" , nil )
2013-04-22 12:17:47 -04:00
if err != nil {
return err
2013-04-11 15:58:23 -04:00
}
2013-04-22 12:17:47 -04:00
2013-06-04 14:00:22 -04:00
var out APIVersion
2013-04-22 12:17:47 -04:00
err = json . Unmarshal ( body , & out )
if err != nil {
2013-05-14 18:37:35 -04:00
utils . Debugf ( "Error unmarshal: body: %s, err: %s\n" , body , err )
2013-04-22 12:17:47 -04:00
return err
}
2013-08-29 20:46:43 -04:00
if out . Version != "" {
fmt . Fprintf ( cli . out , "Server version: %s\n" , out . Version )
}
2013-05-31 18:53:57 -04:00
if out . GitCommit != "" {
2013-08-20 07:52:37 -04:00
fmt . Fprintf ( cli . out , "Git commit (server): %s\n" , out . GitCommit )
2013-05-02 12:36:23 -04:00
}
2013-05-31 18:53:57 -04:00
if out . GoVersion != "" {
2013-08-19 08:05:47 -04:00
fmt . Fprintf ( cli . out , "Go version (server): %s\n" , out . GoVersion )
2013-04-11 15:58:23 -04:00
}
2013-07-03 13:11:00 -04:00
release := utils . GetReleaseVersion ( )
if release != "" {
fmt . Fprintf ( cli . out , "Last stable version: %s" , release )
2013-08-29 20:46:43 -04:00
if ( VERSION != "" || out . Version != "" ) && ( strings . Trim ( VERSION , "-dev" ) != release || strings . Trim ( out . Version , "-dev" ) != release ) {
2013-07-03 13:11:00 -04:00
fmt . Fprintf ( cli . out , ", please update docker" )
}
fmt . Fprintf ( cli . out , "\n" )
}
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-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdInfo ( args ... string ) error {
2013-04-22 12:17:47 -04:00
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-05-13 05:48:27 -04:00
body , _ , err := cli . call ( "GET" , "/info" , nil )
2013-04-22 12:17:47 -04:00
if err != nil {
return err
2013-03-30 13:33:10 -04:00
}
2013-05-08 19:40:48 -04:00
2013-06-04 14:00:22 -04:00
var out APIInfo
2013-05-31 18:53:57 -04:00
if err := json . Unmarshal ( body , & out ) ; err != nil {
2013-04-22 12:17:47 -04:00
return err
}
2013-05-31 18:53:57 -04:00
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . out , "Containers: %d\n" , out . Containers )
fmt . Fprintf ( cli . out , "Images: %d\n" , out . Images )
2013-05-31 18:53:57 -04:00
if out . Debug || os . Getenv ( "DEBUG" ) != "" {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . out , "Debug mode (server): %v\n" , out . Debug )
fmt . Fprintf ( cli . out , "Debug mode (client): %v\n" , os . Getenv ( "DEBUG" ) != "" )
fmt . Fprintf ( cli . out , "Fds: %d\n" , out . NFd )
fmt . Fprintf ( cli . out , "Goroutines: %d\n" , out . NGoroutines )
2013-07-19 12:36:23 -04:00
fmt . Fprintf ( cli . out , "LXC Version: %s\n" , out . LXCVersion )
2013-07-10 08:55:05 -04:00
fmt . Fprintf ( cli . out , "EventsListeners: %d\n" , out . NEventsListener )
2013-07-24 09:35:38 -04:00
fmt . Fprintf ( cli . out , "Kernel Version: %s\n" , out . KernelVersion )
2013-05-31 18:53:57 -04:00
}
2013-07-22 16:09:11 -04:00
2013-07-22 14:42:31 -04:00
if len ( out . IndexServerAddress ) != 0 {
2013-08-16 10:29:40 -04:00
cli . LoadConfigFile ( )
2013-07-22 14:42:31 -04:00
u := cli . configFile . Configs [ out . IndexServerAddress ] . Username
if len ( u ) > 0 {
fmt . Fprintf ( cli . out , "Username: %v\n" , u )
fmt . Fprintf ( cli . out , "Registry: %v\n" , out . IndexServerAddress )
}
2013-07-01 19:05:05 -04:00
}
2013-05-31 18:53:57 -04:00
if ! out . MemoryLimit {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . err , "WARNING: No memory limit support\n" )
2013-05-31 18:53:57 -04:00
}
if ! out . SwapLimit {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . err , "WARNING: No swap limit support\n" )
2013-03-30 13:33:10 -04:00
}
2013-08-03 18:06:58 -04:00
if ! out . IPv4Forwarding {
fmt . Fprintf ( cli . err , "WARNING: IPv4 forwarding is disabled.\n" )
}
2013-02-13 20:10:00 -05:00
return nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdStop ( args ... string ) error {
2013-05-02 12:36:23 -04:00
cmd := Subcmd ( "stop" , "[OPTIONS] CONTAINER [CONTAINER...]" , "Stop a running container" )
2013-07-21 19:00:18 -04:00
nSeconds := cmd . Int ( "t" , 10 , "Number of seconds to wait for the container to stop before killing it." )
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
2013-05-02 12:36:23 -04:00
v := url . Values { }
v . Set ( "t" , strconv . Itoa ( * nSeconds ) )
2013-02-13 20:10:00 -05:00
for _ , name := range cmd . Args ( ) {
2013-05-13 05:48:27 -04:00
_ , _ , err := cli . call ( "POST" , "/containers/" + name + "/stop?" + v . Encode ( ) , nil )
2013-04-22 12:17:47 -04:00
if err != nil {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . err , "%s\n" , err )
2013-02-13 20:10:00 -05:00
} else {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . out , "%s\n" , name )
2013-02-14 16:49:05 -05:00
}
}
return nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdRestart ( args ... string ) error {
2013-05-02 12:36:23 -04:00
cmd := Subcmd ( "restart" , "[OPTIONS] CONTAINER [CONTAINER...]" , "Restart a running container" )
2013-07-17 13:46:11 -04:00
nSeconds := cmd . Int ( "t" , 10 , "Number of seconds to try to stop for before killing the container. Once killed it will then be restarted. Default=10" )
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
2013-05-02 12:36:23 -04:00
v := url . Values { }
v . Set ( "t" , strconv . Itoa ( * nSeconds ) )
2013-02-14 16:49:05 -05:00
for _ , name := range cmd . Args ( ) {
2013-05-13 05:48:27 -04:00
_ , _ , err := cli . call ( "POST" , "/containers/" + name + "/restart?" + v . Encode ( ) , nil )
2013-04-22 12:17:47 -04:00
if err != nil {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . err , "%s\n" , err )
2013-02-14 16:49:05 -05:00
} else {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . out , "%s\n" , name )
2013-02-14 16:49:05 -05:00
}
}
return nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdStart ( args ... string ) error {
2013-04-22 12:17:47 -04:00
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
2013-08-23 11:59:11 -04:00
var encounteredError error
2013-04-22 12:17:47 -04:00
for _ , name := range args {
2013-05-13 05:48:27 -04:00
_ , _ , err := cli . call ( "POST" , "/containers/" + name + "/start" , nil )
2013-04-22 12:17:47 -04:00
if err != nil {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . err , "%s\n" , err )
2013-08-23 11:59:11 -04:00
encounteredError = fmt . Errorf ( "Error: failed to start one or more containers" )
2013-02-14 16:49:05 -05:00
} else {
2013-06-27 00:33:55 -04:00
fmt . Fprintf ( cli . out , "%s\n" , name )
2013-02-13 20:10:00 -05:00
}
}
2013-08-23 11:59:11 -04:00
return encounteredError
2013-02-13 20:10:00 -05:00
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdInspect ( args ... string ) error {
2013-06-06 11:22:54 -04:00
cmd := Subcmd ( "inspect" , "CONTAINER|IMAGE [CONTAINER|IMAGE...]" , "Return low-level information on a container/image" )
2013-02-13 20:10:00 -05:00
if err := cmd . Parse ( args ) ; err != nil {
return nil
}
2013-06-06 11:22:54 -04:00
if cmd . NArg ( ) < 1 {
2013-02-13 20:10:00 -05:00
cmd . Usage ( )
return nil
}
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . out , "[" )
2013-06-06 11:45:08 -04:00
for i , name := range args {
if i > 0 {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . out , "," )
2013-06-06 11:45:08 -04:00
}
2013-06-06 11:22:54 -04:00
obj , _ , err := cli . call ( "GET" , "/containers/" + name + "/json" , nil )
2013-04-24 08:01:40 -04:00
if err != nil {
2013-06-06 11:22:54 -04:00
obj , _ , err = cli . call ( "GET" , "/images/" + name + "/json" , nil )
if err != nil {
2013-09-05 18:28:51 -04:00
fmt . Fprintf ( cli . err , "No such image or container: %s\n" , name )
2013-06-06 11:22:54 -04:00
continue
}
2013-04-24 08:01:40 -04:00
}
2013-05-08 21:46:39 -04:00
2013-06-06 11:22:54 -04:00
indented := new ( bytes . Buffer )
if err = json . Indent ( indented , obj , "" , " " ) ; err != nil {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . err , "%s\n" , err )
2013-06-06 11:22:54 -04:00
continue
}
2013-06-24 17:15:52 -04:00
if _ , err := io . Copy ( cli . out , indented ) ; err != nil {
fmt . Fprintf ( cli . err , "%s\n" , err )
2013-06-06 11:22:54 -04:00
}
2013-02-13 20:10:00 -05:00
}
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . out , "]" )
2013-02-13 20:10:00 -05:00
return nil
}
2013-07-01 11:19:42 -04:00
func ( cli * DockerCli ) CmdTop ( args ... string ) error {
cmd := Subcmd ( "top" , "CONTAINER" , "Lookup the running processes of a container" )
2013-06-28 11:51:58 -04:00
if err := cmd . Parse ( args ) ; err != nil {
return nil
}
2013-07-19 06:06:32 -04:00
if cmd . NArg ( ) == 0 {
2013-06-28 11:51:58 -04:00
cmd . Usage ( )
return nil
}
2013-07-19 06:06:32 -04:00
val := url . Values { }
if cmd . NArg ( ) > 1 {
val . Set ( "ps_args" , strings . Join ( cmd . Args ( ) [ 1 : ] , " " ) )
}
body , _ , err := cli . call ( "GET" , "/containers/" + cmd . Arg ( 0 ) + "/top?" + val . Encode ( ) , nil )
2013-06-28 11:51:58 -04:00
if err != nil {
return err
}
2013-07-19 06:06:32 -04:00
procs := APITop { }
2013-06-28 11:51:58 -04:00
err = json . Unmarshal ( body , & procs )
if err != nil {
return err
}
w := tabwriter . NewWriter ( cli . out , 20 , 1 , 3 , ' ' , 0 )
2013-07-19 06:06:32 -04:00
fmt . Fprintln ( w , strings . Join ( procs . Titles , "\t" ) )
for _ , proc := range procs . Processes {
fmt . Fprintln ( w , strings . Join ( proc , "\t" ) )
2013-06-28 11:51:58 -04:00
}
w . Flush ( )
return nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdPort ( args ... string ) error {
2013-04-23 12:20:53 -04:00
cmd := Subcmd ( "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
}
2013-05-08 12:06:43 -04:00
2013-07-11 14:30:08 -04:00
port := cmd . Arg ( 1 )
proto := "Tcp"
parts := strings . SplitN ( port , "/" , 2 )
if len ( parts ) == 2 && len ( parts [ 1 ] ) != 0 {
port = parts [ 0 ]
proto = strings . ToUpper ( parts [ 1 ] [ : 1 ] ) + strings . ToLower ( parts [ 1 ] [ 1 : ] )
}
2013-05-13 05:48:27 -04:00
body , _ , err := cli . call ( "GET" , "/containers/" + cmd . Arg ( 0 ) + "/json" , nil )
2013-04-23 12:20:53 -04:00
if err != nil {
return err
}
2013-05-08 12:06:43 -04:00
var out Container
2013-04-23 12:20:53 -04:00
err = json . Unmarshal ( body , & out )
if err != nil {
return err
2013-03-06 03:39:03 -05:00
}
2013-05-08 12:06:43 -04:00
2013-07-11 14:30:08 -04:00
if frontend , exists := out . NetworkSettings . PortMapping [ proto ] [ port ] ; exists {
2013-06-25 13:39:11 -04:00
fmt . Fprintf ( cli . out , "%s\n" , frontend )
2013-03-06 03:39:03 -05:00
} else {
2013-06-10 11:06:52 -04:00
return fmt . Errorf ( "Error: No private port '%s' allocated on %s" , cmd . Arg ( 1 ) , cmd . Arg ( 0 ) )
2013-03-06 03:39:03 -05:00
}
return nil
}
2013-04-11 12:46:47 -04:00
// 'docker rmi IMAGE' removes all images with the name IMAGE
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdRmi ( args ... string ) error {
2013-07-17 13:46:11 -04:00
cmd := Subcmd ( "rmi" , "IMAGE [IMAGE...]" , "Remove one or more images" )
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
2013-03-13 14:14:37 -04:00
for _ , name := range cmd . Args ( ) {
2013-05-31 10:37:02 -04:00
body , _ , err := cli . call ( "DELETE" , "/images/" + name , nil )
2013-04-10 20:23:42 -04:00
if err != nil {
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . err , "%s" , err )
2013-04-22 12:17:47 -04:00
} else {
2013-06-10 17:05:54 -04:00
var outs [ ] APIRmi
2013-05-31 10:37:02 -04:00
err = json . Unmarshal ( body , & outs )
if err != nil {
return err
}
for _ , out := range outs {
if out . Deleted != "" {
2013-06-25 13:39:11 -04:00
fmt . Fprintf ( cli . out , "Deleted: %s\n" , out . Deleted )
2013-05-31 10:37:02 -04:00
} else {
2013-06-25 13:39:11 -04:00
fmt . Fprintf ( cli . out , "Untagged: %s\n" , out . Untagged )
2013-05-31 10:37:02 -04:00
}
}
2013-03-13 14:14:37 -04:00
}
}
return nil
}
2013-02-13 20:10:00 -05:00
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdHistory ( args ... string ) error {
2013-04-22 12:17:47 -04:00
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
2013-05-13 05:48:27 -04:00
body , _ , err := cli . call ( "GET" , "/images/" + cmd . Arg ( 0 ) + "/history" , nil )
2013-03-22 00:42:18 -04:00
if err != nil {
return err
}
2013-04-22 12:17:47 -04:00
2013-06-04 14:00:22 -04:00
var outs [ ] APIHistory
2013-04-22 12:17:47 -04:00
err = json . Unmarshal ( body , & outs )
2013-03-22 00:42:18 -04:00
if err != nil {
return err
}
2013-06-24 17:15:52 -04:00
w := tabwriter . NewWriter ( cli . out , 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 {
2013-06-18 13:31:07 -04:00
if out . Tags != nil {
out . ID = out . Tags [ 0 ]
}
fmt . Fprintf ( w , "%s \t%s ago\t%s\n" , out . ID , utils . HumanDuration ( time . Now ( ) . Sub ( time . Unix ( out . Created , 0 ) ) ) , out . CreatedBy )
2013-04-22 12:17:47 -04:00
}
w . Flush ( )
return nil
2013-03-22 00:42:18 -04:00
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdRm ( args ... string ) error {
2013-07-17 13:46:11 -04:00
cmd := Subcmd ( "rm" , "[OPTIONS] CONTAINER [CONTAINER...]" , "Remove one or more containers" )
2013-04-12 12:23:57 -04:00
v := cmd . Bool ( "v" , false , "Remove the volumes associated to the 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-05-06 05:52:15 -04:00
val := url . Values { }
2013-04-12 12:23:57 -04:00
if * v {
2013-05-06 05:52:15 -04:00
val . Set ( "v" , "1" )
}
for _ , name := range cmd . Args ( ) {
2013-05-13 05:48:27 -04:00
_ , _ , err := cli . call ( "DELETE" , "/containers/" + name + "?" + val . Encode ( ) , nil )
2013-04-22 12:17:47 -04:00
if err != nil {
2013-06-25 13:39:11 -04:00
fmt . Fprintf ( cli . err , "%s\n" , err )
2013-04-22 12:17:47 -04:00
} else {
2013-06-25 13:39:11 -04:00
fmt . Fprintf ( cli . out , "%s\n" , name )
2013-04-12 12:23:57 -04:00
}
}
2013-02-13 20:10:00 -05:00
return nil
}
// 'docker kill NAME' kills a running container
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdKill ( args ... string ) error {
2013-04-22 12:17:47 -04:00
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 {
2013-05-13 05:48:27 -04:00
_ , _ , err := cli . call ( "POST" , "/containers/" + name + "/kill" , nil )
2013-04-22 12:17:47 -04:00
if err != nil {
2013-06-25 13:39:11 -04:00
fmt . Fprintf ( cli . err , "%s\n" , err )
2013-04-22 12:17:47 -04:00
} else {
2013-06-25 13:39:11 -04:00
fmt . Fprintf ( cli . out , "%s\n" , name )
2013-02-13 20:10:00 -05:00
}
}
return nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdImport ( args ... string ) error {
2013-07-25 03:36:32 -04:00
cmd := Subcmd ( "import" , "URL|- [REPOSITORY [TAG]]" , "Create a new filesystem image from the contents of a tarball(.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz)." )
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-30 11:04:31 -04:00
src , repository , tag := cmd . Arg ( 0 ) , cmd . Arg ( 1 ) , cmd . Arg ( 2 )
v := url . Values { }
v . Set ( "repo" , repository )
v . Set ( "tag" , tag )
2013-05-06 05:31:22 -04:00
v . Set ( "fromSrc" , src )
2013-04-30 11:04:31 -04:00
2013-06-24 17:15:52 -04:00
err := cli . stream ( "POST" , "/images/create?" + v . Encode ( ) , cli . in , cli . out )
2013-02-13 20:10:00 -05:00
if err != nil {
return err
}
return nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdPush ( args ... string ) error {
2013-07-12 13:55:26 -04:00
cmd := Subcmd ( "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-05-06 07:34:31 -04:00
name := cmd . Arg ( 0 )
2013-03-22 09:38:54 -04:00
2013-05-06 07:34:31 -04:00
if name == "" {
2013-03-21 06:53:27 -04:00
cmd . Usage ( )
return nil
}
2013-08-16 10:29:40 -04:00
cli . LoadConfigFile ( )
2013-07-05 15:20:58 -04:00
// If we're not using a custom registry, we know the restrictions
// applied to repository names and can warn the user in advance.
// Custom repositories can have different rules, and we must also
// allow pushing by image ID.
2013-05-06 07:34:31 -04:00
if len ( strings . SplitN ( name , "/" , 2 ) ) == 1 {
2013-08-16 10:29:40 -04:00
username := cli . configFile . Configs [ auth . IndexServerAddress ( ) ] . Username
if username == "" {
username = "<user>"
}
return fmt . Errorf ( "Impossible to push a \"root\" repository. Please rename your repository in <user>/<repo> (ex: %s/%s)" , username , name )
2013-03-22 09:38:54 -04:00
}
2013-07-23 23:01:24 -04:00
v := url . Values { }
push := func ( ) error {
buf , err := json . Marshal ( cli . configFile . Configs [ auth . IndexServerAddress ( ) ] )
if err != nil {
return err
}
return cli . stream ( "POST" , "/images/" + name + "/push?" + v . Encode ( ) , bytes . NewBuffer ( buf ) , cli . out )
2013-03-22 09:38:54 -04:00
}
2013-07-23 23:01:24 -04:00
if err := push ( ) ; err != nil {
2013-08-13 09:35:34 -04:00
if err . Error ( ) == "Authentication is required." {
2013-08-13 09:51:49 -04:00
fmt . Fprintln ( cli . out , "\nPlease login prior to push:" )
if err := cli . CmdLogin ( "" ) ; err != nil {
return err
2013-07-23 23:01:24 -04:00
}
2013-08-13 09:51:49 -04:00
return push ( )
2013-07-23 23:01:24 -04:00
}
2013-03-22 06:10:09 -04:00
return err
}
return nil
2013-03-21 06:53:27 -04:00
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdPull ( args ... string ) error {
2013-04-23 12:20:53 -04:00
cmd := Subcmd ( "pull" , "NAME" , "Pull an image or a repository from the registry" )
2013-04-15 14:17:03 -04:00
tag := cmd . String ( "t" , "" , "Download tagged image in repository" )
2013-03-21 06:53:27 -04:00
if err := cmd . Parse ( args ) ; err != nil {
return nil
}
2013-04-23 12:20:53 -04:00
if cmd . NArg ( ) != 1 {
2013-03-21 06:53:27 -04:00
cmd . Usage ( )
return nil
}
2013-03-22 04:25:27 -04:00
2013-07-09 11:06:10 -04:00
remote , parsedTag := utils . ParseRepositoryTag ( cmd . Arg ( 0 ) )
2013-07-12 13:42:54 -04:00
if * tag == "" {
* tag = parsedTag
}
2013-04-30 09:55:24 -04:00
2013-05-06 05:31:22 -04:00
v := url . Values { }
2013-05-07 13:23:50 -04:00
v . Set ( "fromImage" , remote )
v . Set ( "tag" , * tag )
2013-03-22 04:25:27 -04:00
2013-06-24 17:15:52 -04:00
if err := cli . stream ( "POST" , "/images/create?" + v . Encode ( ) , nil , cli . out ) ; err != nil {
2013-03-22 06:10:09 -04:00
return err
}
2013-04-23 12:20:53 -04:00
2013-03-22 06:10:09 -04:00
return nil
2013-03-21 06:53:27 -04:00
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdImages ( args ... string ) error {
2013-04-22 12:17:47 -04:00
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-05-13 06:26:18 -04:00
noTrunc := cmd . Bool ( "notrunc" , false , "Don't truncate output" )
2013-05-01 01:39:48 -04:00
flViz := cmd . Bool ( "viz" , false , "output graph in graphviz format" )
2013-04-23 12:20:53 -04:00
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-05-01 01:39:48 -04:00
if * flViz {
2013-05-13 05:48:27 -04:00
body , _ , err := cli . call ( "GET" , "/images/viz" , false )
2013-05-09 17:10:26 -04:00
if err != nil {
2013-05-07 13:23:50 -04:00
return err
2013-05-01 01:39:48 -04:00
}
2013-06-25 13:39:11 -04:00
fmt . Fprintf ( cli . out , "%s" , body )
2013-05-01 01:39:48 -04:00
} else {
2013-05-07 13:23:50 -04:00
v := url . Values { }
2013-05-01 01:39:48 -04:00
if cmd . NArg ( ) == 1 {
2013-05-07 13:23:50 -04:00
v . Set ( "filter" , cmd . Arg ( 0 ) )
2013-05-01 01:39:48 -04:00
}
2013-05-07 13:23:50 -04:00
if * all {
v . Set ( "all" , "1" )
2013-05-01 01:39:48 -04:00
}
2013-04-22 12:17:47 -04:00
2013-05-13 05:48:27 -04:00
body , _ , err := cli . call ( "GET" , "/images/json?" + v . Encode ( ) , nil )
2013-05-01 01:39:48 -04:00
if err != nil {
return err
}
2013-04-22 12:17:47 -04:00
2013-06-04 14:00:22 -04:00
var outs [ ] APIImages
2013-05-07 13:23:50 -04:00
err = json . Unmarshal ( body , & outs )
if err != nil {
return err
2013-02-13 20:10:00 -05:00
}
2013-05-07 13:23:50 -04:00
2013-06-24 17:15:52 -04:00
w := tabwriter . NewWriter ( cli . out , 20 , 1 , 3 , ' ' , 0 )
2013-04-22 12:17:47 -04:00
if ! * quiet {
2013-05-13 09:10:26 -04:00
fmt . Fprintln ( w , "REPOSITORY\tTAG\tID\tCREATED\tSIZE" )
2013-03-21 20:35:49 -04:00
}
2013-04-22 12:17:47 -04:00
2013-05-07 13:23:50 -04:00
for _ , out := range outs {
2013-05-13 06:18:55 -04:00
if out . Repository == "" {
out . Repository = "<none>"
}
if out . Tag == "" {
out . Tag = "<none>"
}
2013-05-07 13:23:50 -04:00
if ! * quiet {
2013-05-13 06:26:18 -04:00
fmt . Fprintf ( w , "%s\t%s\t" , out . Repository , out . Tag )
if * noTrunc {
2013-06-04 14:00:22 -04:00
fmt . Fprintf ( w , "%s\t" , out . ID )
2013-05-13 06:26:18 -04:00
} else {
2013-06-04 14:00:22 -04:00
fmt . Fprintf ( w , "%s\t" , utils . TruncateID ( out . ID ) )
2013-05-13 06:26:18 -04:00
}
2013-05-22 09:41:29 -04:00
fmt . Fprintf ( w , "%s ago\t" , utils . HumanDuration ( time . Now ( ) . Sub ( time . Unix ( out . Created , 0 ) ) ) )
2013-06-14 06:05:01 -04:00
if out . VirtualSize > 0 {
fmt . Fprintf ( w , "%s (virtual %s)\n" , utils . HumanSize ( out . Size ) , utils . HumanSize ( out . VirtualSize ) )
2013-05-22 09:41:29 -04:00
} else {
fmt . Fprintf ( w , "%s\n" , utils . HumanSize ( out . Size ) )
}
2013-05-07 13:23:50 -04:00
} else {
2013-05-13 06:26:18 -04:00
if * noTrunc {
2013-06-04 14:00:22 -04:00
fmt . Fprintln ( w , out . ID )
2013-05-13 06:26:18 -04:00
} else {
2013-06-04 14:00:22 -04:00
fmt . Fprintln ( w , utils . TruncateID ( out . ID ) )
2013-05-13 06:26:18 -04:00
}
2013-03-21 20:35:49 -04:00
}
}
2013-05-07 13:23:50 -04:00
2013-05-01 01:39:48 -04:00
if ! * quiet {
w . Flush ( )
}
2013-02-13 20:10:00 -05:00
}
return nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdPs ( args ... string ) error {
2013-04-22 12:17:47 -04:00
cmd := Subcmd ( "ps" , "[OPTIONS]" , "List containers" )
2013-02-13 20:10:00 -05:00
quiet := cmd . Bool ( "q" , false , "Only display numeric IDs" )
2013-06-20 10:19:50 -04:00
size := cmd . Bool ( "s" , false , "Display sizes" )
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." )
2013-05-08 12:28:11 -04:00
since := cmd . String ( "sinceId" , "" , "Show only containers created since Id, include non-running ones." )
before := cmd . String ( "beforeId" , "" , "Show only container created before Id, include non-running ones." )
2013-04-22 12:17:47 -04:00
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 * all {
2013-04-26 09:08:33 -04:00
v . Set ( "all" , "1" )
2013-04-22 12:17:47 -04:00
}
if * last != - 1 {
2013-05-08 11:35:50 -04:00
v . Set ( "limit" , strconv . Itoa ( * last ) )
2013-04-22 12:17:47 -04:00
}
2013-05-08 12:28:11 -04:00
if * since != "" {
v . Set ( "since" , * since )
}
if * before != "" {
v . Set ( "before" , * before )
}
2013-06-20 10:19:50 -04:00
if * size {
v . Set ( "size" , "1" )
}
2013-04-23 12:20:53 -04:00
2013-05-28 12:08:05 -04:00
body , _ , err := cli . call ( "GET" , "/containers/json?" + v . Encode ( ) , nil )
2013-04-22 12:17:47 -04:00
if err != nil {
return err
}
2013-06-04 14:00:22 -04:00
var outs [ ] APIContainers
2013-04-22 12:17:47 -04:00
err = json . Unmarshal ( body , & outs )
if err != nil {
return err
2013-04-10 13:30:57 -04:00
}
2013-06-24 17:15:52 -04:00
w := tabwriter . NewWriter ( cli . out , 20 , 1 , 3 , ' ' , 0 )
2013-02-13 20:28:13 -05:00
if ! * quiet {
2013-06-20 10:19:50 -04:00
fmt . Fprint ( w , "ID\tIMAGE\tCOMMAND\tCREATED\tSTATUS\tPORTS" )
if * size {
fmt . Fprintln ( w , "\tSIZE" )
} else {
fmt . Fprint ( w , "\n" )
}
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-05-13 06:18:55 -04:00
if * noTrunc {
2013-06-05 12:01:36 -04:00
fmt . Fprintf ( w , "%s\t%s\t%s\t%s ago\t%s\t%s\t" , out . ID , out . Image , out . Command , utils . HumanDuration ( time . Now ( ) . Sub ( time . Unix ( out . Created , 0 ) ) ) , out . Status , out . Ports )
2013-05-22 09:41:29 -04:00
} else {
2013-06-05 12:01:36 -04:00
fmt . Fprintf ( w , "%s\t%s\t%s\t%s ago\t%s\t%s\t" , utils . TruncateID ( out . ID ) , out . Image , utils . Trunc ( out . Command , 20 ) , utils . HumanDuration ( time . Now ( ) . Sub ( time . Unix ( out . Created , 0 ) ) ) , out . Status , out . Ports )
2013-05-22 09:41:29 -04:00
}
2013-06-20 10:19:50 -04:00
if * size {
if out . SizeRootFs > 0 {
fmt . Fprintf ( w , "%s (virtual %s)\n" , utils . HumanSize ( out . SizeRw ) , utils . HumanSize ( out . SizeRootFs ) )
} else {
fmt . Fprintf ( w , "%s\n" , utils . HumanSize ( out . SizeRw ) )
}
2013-05-13 09:10:26 -04:00
} else {
2013-06-20 10:19:50 -04:00
fmt . Fprint ( w , "\n" )
2013-05-13 09:10:26 -04:00
}
2013-02-13 20:10:00 -05:00
} else {
2013-05-13 06:18:55 -04:00
if * noTrunc {
2013-06-04 14:00:22 -04:00
fmt . Fprintln ( w , out . ID )
2013-05-13 06:18:55 -04:00
} else {
2013-06-04 14:00:22 -04:00
fmt . Fprintln ( w , utils . TruncateID ( out . ID ) )
2013-05-13 06:18:55 -04:00
}
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-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdCommit ( args ... string ) error {
2013-04-24 10:06:03 -04:00
cmd := Subcmd ( "commit" , "[OPTIONS] CONTAINER [REPOSITORY [TAG]]" , "Create a new image from a container's changes" )
2013-03-28 20:12:23 -04:00
flComment := cmd . String ( "m" , "" , "Commit message" )
2013-04-17 23:13:11 -04:00
flAuthor := cmd . String ( "author" , "" , "Author (eg. \"John Hannibal Smith <hannibal@a-team.com>\"" )
2013-05-01 15:45:45 -04:00
flConfig := cmd . String ( "run" , "" , "Config automatically applied when the image is run. " + ` (ex: { "Cmd": ["cat", "/world"], "PortSpecs": ["22"]}') ` )
2013-02-13 20:10:00 -05:00
if err := cmd . Parse ( args ) ; err != nil {
return nil
}
2013-04-24 10:06:03 -04:00
name , repository , tag := cmd . Arg ( 0 ) , cmd . Arg ( 1 ) , cmd . Arg ( 2 )
if name == "" {
2013-02-13 20:10:00 -05:00
cmd . Usage ( )
return nil
}
2013-04-25 19:48:31 -04:00
2013-04-24 10:06:03 -04:00
v := url . Values { }
2013-05-07 11:19:41 -04:00
v . Set ( "container" , name )
2013-04-24 10:06:03 -04:00
v . Set ( "repo" , repository )
v . Set ( "tag" , tag )
v . Set ( "comment" , * flComment )
2013-05-02 12:36:23 -04:00
v . Set ( "author" , * flAuthor )
2013-05-01 18:19:55 -04:00
var config * Config
2013-04-25 19:48:31 -04:00
if * flConfig != "" {
2013-05-01 18:19:55 -04:00
config = & Config { }
2013-04-26 13:48:33 -04:00
if err := json . Unmarshal ( [ ] byte ( * flConfig ) , config ) ; err != nil {
return err
}
2013-04-25 19:48:31 -04:00
}
2013-05-13 05:48:27 -04:00
body , _ , err := cli . call ( "POST" , "/commit?" + v . Encode ( ) , config )
2013-03-21 23:07:37 -04:00
if err != nil {
return err
2013-04-24 18:24:14 -04:00
}
2013-06-04 14:00:22 -04:00
apiID := & APIID { }
err = json . Unmarshal ( body , apiID )
2013-03-21 23:07:37 -04:00
if err != nil {
return err
2013-02-13 20:10:00 -05:00
}
2013-04-24 10:06:03 -04:00
2013-06-25 13:39:11 -04:00
fmt . Fprintf ( cli . out , "%s\n" , apiID . ID )
2013-03-21 23:07:37 -04:00
return nil
2013-02-13 20:10:00 -05:00
}
2013-07-10 08:55:05 -04:00
func ( cli * DockerCli ) CmdEvents ( args ... string ) error {
2013-07-12 12:29:23 -04:00
cmd := Subcmd ( "events" , "[OPTIONS]" , "Get real time events from the server" )
since := cmd . String ( "since" , "" , "Show events previously created (used for polling)." )
2013-07-10 08:55:05 -04:00
if err := cmd . Parse ( args ) ; err != nil {
return nil
}
if cmd . NArg ( ) != 0 {
cmd . Usage ( )
return nil
}
2013-07-12 12:29:23 -04:00
v := url . Values { }
if * since != "" {
v . Set ( "since" , * since )
}
if err := cli . stream ( "GET" , "/events?" + v . Encode ( ) , nil , cli . out ) ; err != nil {
2013-07-10 08:55:05 -04:00
return err
}
return nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdExport ( args ... string ) error {
2013-04-24 10:32:51 -04:00
cmd := Subcmd ( "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
}
2013-04-24 10:32:51 -04:00
if cmd . NArg ( ) != 1 {
cmd . Usage ( )
2013-02-13 20:10:00 -05:00
return nil
}
2013-04-24 10:32:51 -04:00
2013-06-24 17:15:52 -04:00
if err := cli . stream ( "GET" , "/containers/" + cmd . Arg ( 0 ) + "/export" , nil , cli . out ) ; err != nil {
2013-04-24 10:32:51 -04:00
return err
}
return nil
2013-02-13 20:10:00 -05:00
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdDiff ( args ... string ) error {
2013-04-24 08:01:40 -04:00
cmd := Subcmd ( "diff" , "CONTAINER" , "Inspect changes on a container's filesystem" )
2013-02-13 20:10:00 -05:00
if err := cmd . Parse ( args ) ; err != nil {
return nil
}
2013-04-24 08:01:40 -04:00
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-04-24 08:01:40 -04:00
2013-05-13 05:48:27 -04:00
body , _ , err := cli . call ( "GET" , "/containers/" + cmd . Arg ( 0 ) + "/changes" , nil )
2013-04-24 08:01:40 -04:00
if err != nil {
return err
}
2013-05-10 00:53:28 -04:00
changes := [ ] Change { }
2013-04-24 08:01:40 -04:00
err = json . Unmarshal ( body , & changes )
if err != nil {
return err
}
for _ , change := range changes {
2013-06-25 13:39:11 -04:00
fmt . Fprintf ( cli . out , "%s\n" , change . String ( ) )
2013-02-13 20:10:00 -05:00
}
return nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdLogs ( args ... string ) error {
2013-04-22 12:17:47 -04:00
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
2013-07-18 09:29:40 -04:00
if err := cli . hijack ( "POST" , "/containers/" + cmd . Arg ( 0 ) + "/attach?logs=1&stdout=1&stderr=1" , false , nil , cli . out ) ; err != nil {
2013-04-22 12:17:47 -04:00
return err
2013-02-13 20:10:00 -05:00
}
2013-04-22 12:17:47 -04:00
return nil
2013-02-13 20:10:00 -05:00
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdAttach ( args ... string ) error {
2013-04-26 09:08:33 -04:00
cmd := Subcmd ( "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
}
2013-04-02 15:18:20 -04:00
2013-05-13 05:48:27 -04:00
body , _ , err := cli . call ( "GET" , "/containers/" + cmd . Arg ( 0 ) + "/json" , nil )
2013-04-29 11:46:41 -04:00
if err != nil {
return err
2013-02-13 20:10:00 -05:00
}
2013-04-02 15:18:20 -04:00
2013-05-10 00:53:28 -04:00
container := & Container { }
err = json . Unmarshal ( body , container )
2013-04-29 11:46:41 -04:00
if err != nil {
return err
2013-04-19 17:18:03 -04:00
}
2013-06-17 18:40:04 -04:00
if ! container . State . Running {
return fmt . Errorf ( "Impossible to attach to a stopped container, start it first" )
}
2013-06-13 15:57:35 -04:00
if container . Config . Tty {
2013-06-24 17:59:37 -04:00
if err := cli . monitorTtySize ( cmd . Arg ( 0 ) ) ; err != nil {
return err
}
2013-06-13 15:57:35 -04:00
}
2013-06-17 17:44:35 -04:00
2013-05-01 23:07:06 -04:00
v := url . Values { }
v . Set ( "stream" , "1" )
v . Set ( "stdin" , "1" )
2013-05-29 07:40:54 -04:00
v . Set ( "stdout" , "1" )
2013-06-17 17:44:35 -04:00
v . Set ( "stderr" , "1" )
2013-06-24 17:59:37 -04:00
if err := cli . hijack ( "POST" , "/containers/" + cmd . Arg ( 0 ) + "/attach?" + v . Encode ( ) , container . Config . Tty , cli . in , cli . out ) ; err != nil {
2013-06-17 17:44:35 -04:00
return err
2013-04-05 00:51:40 -04:00
}
2013-04-26 09:08:33 -04:00
return nil
2013-02-13 20:10:00 -05:00
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdSearch ( args ... string ) error {
2013-05-07 14:37:35 -04:00
cmd := Subcmd ( "search" , "NAME" , "Search the docker index for images" )
2013-07-08 13:20:13 -04:00
noTrunc := cmd . Bool ( "notrunc" , false , "Don't truncate output" )
2013-05-07 06:49:08 -04:00
if err := cmd . Parse ( args ) ; err != nil {
return nil
}
if cmd . NArg ( ) != 1 {
cmd . Usage ( )
return nil
}
2013-05-07 14:59:04 -04:00
2013-05-07 14:37:35 -04:00
v := url . Values { }
2013-05-07 14:59:04 -04:00
v . Set ( "term" , cmd . Arg ( 0 ) )
2013-05-13 05:48:27 -04:00
body , _ , err := cli . call ( "GET" , "/images/search?" + v . Encode ( ) , nil )
2013-05-07 14:59:04 -04:00
if err != nil {
return err
}
2013-06-04 14:00:22 -04:00
outs := [ ] APISearch { }
2013-05-07 14:59:04 -04:00
err = json . Unmarshal ( body , & outs )
2013-05-07 06:49:08 -04:00
if err != nil {
return err
}
2013-06-24 17:15:52 -04:00
fmt . Fprintf ( cli . out , "Found %d results matching your query (\"%s\")\n" , len ( outs ) , cmd . Arg ( 0 ) )
2013-07-08 13:20:13 -04:00
w := tabwriter . NewWriter ( cli . out , 33 , 1 , 3 , ' ' , 0 )
2013-05-07 06:49:08 -04:00
fmt . Fprintf ( w , "NAME\tDESCRIPTION\n" )
2013-07-08 13:20:13 -04:00
_ , width := cli . getTtySize ( )
if width == 0 {
width = 45
} else {
width = width - 33 //remote the first column
}
2013-05-07 14:37:35 -04:00
for _ , out := range outs {
2013-06-07 09:09:24 -04:00
desc := strings . Replace ( out . Description , "\n" , " " , - 1 )
desc = strings . Replace ( desc , "\r" , " " , - 1 )
2013-07-08 13:20:13 -04:00
if ! * noTrunc && len ( desc ) > width {
desc = utils . Trunc ( desc , width - 3 ) + "..."
2013-06-07 09:09:24 -04:00
}
fmt . Fprintf ( w , "%s\t%s\n" , out . Name , desc )
2013-05-07 06:49:08 -04:00
}
w . Flush ( )
return nil
}
2013-02-28 14:52:22 -05:00
// Ports type - Used to parse multiple -p flags
type ports [ ] int
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-05 21:00:10 -04:00
// PathOpts stores a unique set of absolute paths
2013-04-10 19:09:34 -04:00
type PathOpts map [ string ] struct { }
2013-04-05 21:00:10 -04:00
func NewPathOpts ( ) PathOpts {
return make ( PathOpts )
}
func ( opts PathOpts ) String ( ) string {
2013-04-10 19:09:34 -04:00
return fmt . Sprintf ( "%v" , map [ string ] struct { } ( opts ) )
2013-04-05 21:00:10 -04:00
}
func ( opts PathOpts ) Set ( val string ) error {
2013-07-15 20:18:11 -04:00
var containerPath string
splited := strings . SplitN ( val , ":" , 2 )
if len ( splited ) == 1 {
containerPath = splited [ 0 ]
val = filepath . Clean ( splited [ 0 ] )
} else {
containerPath = splited [ 1 ]
val = fmt . Sprintf ( "%s:%s" , splited [ 0 ] , filepath . Clean ( splited [ 1 ] ) )
}
if ! filepath . IsAbs ( containerPath ) {
utils . Debugf ( "%s is not an absolute path" , containerPath )
return fmt . Errorf ( "%s is not an absolute path" , containerPath )
2013-04-05 21:00:10 -04:00
}
2013-07-15 20:18:11 -04:00
opts [ val ] = struct { } { }
2013-04-05 21:00:10 -04:00
return nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdTag ( args ... string ) error {
2013-04-23 12:20:53 -04:00
cmd := Subcmd ( "tag" , "[OPTIONS] IMAGE REPOSITORY [TAG]" , "Tag an image into a repository" )
2013-03-22 21:27:18 -04:00
force := cmd . Bool ( "f" , false , "Force" )
if err := cmd . Parse ( args ) ; err != nil {
return nil
}
2013-04-23 12:20:53 -04:00
if cmd . NArg ( ) != 2 && cmd . NArg ( ) != 3 {
2013-03-22 21:27:18 -04:00
cmd . Usage ( )
return nil
}
2013-04-23 12:20:53 -04:00
v := url . Values { }
v . Set ( "repo" , cmd . Arg ( 1 ) )
if cmd . NArg ( ) == 3 {
v . Set ( "tag" , cmd . Arg ( 2 ) )
}
if * force {
2013-04-26 09:08:33 -04:00
v . Set ( "force" , "1" )
2013-04-23 12:20:53 -04:00
}
2013-05-13 05:48:27 -04:00
if _ , _ , err := cli . call ( "POST" , "/images/" + cmd . Arg ( 0 ) + "/tag?" + v . Encode ( ) , nil ) ; err != nil {
2013-04-23 12:20:53 -04:00
return err
}
return nil
2013-03-22 21:27:18 -04:00
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) CmdRun ( args ... string ) error {
2013-05-13 19:39:54 -04:00
config , hostConfig , cmd , err := ParseRun ( args , nil )
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-04-23 12:20:53 -04:00
cmd . Usage ( )
return nil
2013-03-23 15:16:58 -04:00
}
2013-04-05 22:48:49 -04:00
2013-07-11 18:11:44 -04:00
var containerIDFile * os . File
if len ( hostConfig . ContainerIDFile ) > 0 {
if _ , err := ioutil . ReadFile ( hostConfig . ContainerIDFile ) ; err == nil {
return fmt . Errorf ( "cid file found, make sure the other container isn't running or delete %s" , hostConfig . ContainerIDFile )
}
containerIDFile , err = os . Create ( hostConfig . ContainerIDFile )
if err != nil {
return fmt . Errorf ( "failed to create the container ID file: %s" , err )
}
defer containerIDFile . Close ( )
}
2013-05-01 23:07:06 -04:00
//create the container
2013-05-13 05:48:27 -04:00
body , statusCode , err := cli . call ( "POST" , "/containers/create" , config )
2013-05-01 23:07:06 -04:00
//if image not found try to pull it
if statusCode == 404 {
2013-08-17 23:03:54 -04:00
_ , tag := utils . ParseRepositoryTag ( config . Image )
if tag == "" {
tag = DEFAULTTAG
}
2013-08-29 19:25:11 -04:00
fmt . Fprintf ( cli . err , "Unable to find image '%s' (tag: %s) locally\n" , config . Image , tag )
2013-08-17 23:03:54 -04:00
2013-05-06 05:31:22 -04:00
v := url . Values { }
2013-07-09 19:45:32 -04:00
repos , tag := utils . ParseRepositoryTag ( config . Image )
v . Set ( "fromImage" , repos )
v . Set ( "tag" , tag )
2013-06-24 17:15:52 -04:00
err = cli . stream ( "POST" , "/images/create?" + v . Encode ( ) , nil , cli . err )
2013-05-01 23:07:06 -04:00
if err != nil {
return err
}
2013-05-13 05:48:27 -04:00
body , _ , err = cli . call ( "POST" , "/containers/create" , config )
2013-05-06 05:31:22 -04:00
if err != nil {
return err
}
2013-05-01 23:07:06 -04:00
}
if err != nil {
2013-04-02 02:52:20 -04:00
return err
2013-04-05 00:51:40 -04:00
}
2013-04-24 18:14:10 -04:00
2013-06-24 17:15:52 -04:00
runResult := & APIRun { }
err = json . Unmarshal ( body , runResult )
2013-02-13 20:10:00 -05:00
if err != nil {
2013-05-01 23:07:06 -04:00
return err
2013-02-13 20:10:00 -05:00
}
2013-05-01 23:07:06 -04:00
2013-06-24 17:15:52 -04:00
for _ , warning := range runResult . Warnings {
2013-06-27 18:25:31 -04:00
fmt . Fprintf ( cli . err , "WARNING: %s\n" , warning )
2013-05-02 12:36:23 -04:00
}
2013-07-08 04:01:16 -04:00
if len ( hostConfig . ContainerIDFile ) > 0 {
2013-07-11 18:11:44 -04:00
if _ , err = containerIDFile . WriteString ( runResult . ID ) ; err != nil {
2013-07-08 04:01:16 -04:00
return fmt . Errorf ( "failed to write the container ID to the file: %s" , err )
}
}
2013-05-02 12:36:23 -04:00
2013-05-01 23:07:06 -04:00
//start the container
2013-05-13 19:39:54 -04:00
if _ , _ , err = cli . call ( "POST" , "/containers/" + runResult . ID + "/start" , hostConfig ) ; err != nil {
2013-04-02 02:52:20 -04:00
return err
2013-02-13 20:10:00 -05:00
}
2013-05-07 16:15:21 -04:00
2013-06-27 15:48:25 -04:00
var wait chan struct { }
2013-06-04 18:24:25 -04:00
if ! config . AttachStdout && ! config . AttachStderr {
2013-06-24 21:22:02 -04:00
// Make this asynchrone in order to let the client write to stdin before having to read the ID
2013-06-27 15:48:25 -04:00
wait = make ( chan struct { } )
go func ( ) {
defer close ( wait )
fmt . Fprintf ( cli . out , "%s\n" , runResult . ID )
} ( )
2013-06-24 15:12:06 -04:00
}
2013-06-24 21:22:02 -04:00
2013-06-24 15:12:06 -04:00
if config . AttachStdin || config . AttachStdout || config . AttachStderr {
2013-06-13 15:57:35 -04:00
if config . Tty {
2013-06-24 17:59:37 -04:00
if err := cli . monitorTtySize ( runResult . ID ) ; err != nil {
2013-07-23 20:27:49 -04:00
utils . Debugf ( "Error monitoring TTY size: %s\n" , err )
2013-06-24 17:59:37 -04:00
}
2013-06-13 15:57:35 -04:00
}
2013-05-29 07:40:54 -04:00
v := url . Values { }
v . Set ( "logs" , "1" )
v . Set ( "stream" , "1" )
2013-08-13 16:30:08 -04:00
var out io . Writer
2013-05-29 07:40:54 -04:00
if config . AttachStdin {
v . Set ( "stdin" , "1" )
}
if config . AttachStdout {
v . Set ( "stdout" , "1" )
2013-08-13 16:30:08 -04:00
out = cli . out
2013-05-29 07:40:54 -04:00
}
2013-06-17 18:45:08 -04:00
if config . AttachStderr {
2013-05-29 07:40:54 -04:00
v . Set ( "stderr" , "1" )
2013-08-13 16:30:08 -04:00
out = cli . out
2013-05-29 07:40:54 -04:00
}
2013-06-24 21:22:02 -04:00
2013-07-20 06:47:13 -04:00
signals := make ( chan os . Signal , 1 )
signal . Notify ( signals , syscall . SIGINT , syscall . SIGTERM )
go func ( ) {
2013-08-09 16:23:27 -04:00
for sig := range signals {
fmt . Printf ( "\nReceived signal: %s; cleaning up\n" , sig )
if err := cli . CmdStop ( "-t" , "4" , runResult . ID ) ; err != nil {
2013-08-09 16:27:34 -04:00
fmt . Printf ( "failed to stop container: %v" , err )
2013-07-20 06:47:13 -04:00
}
}
} ( )
2013-08-13 16:30:08 -04:00
if err := cli . hijack ( "POST" , "/containers/" + runResult . ID + "/attach?" + v . Encode ( ) , config . Tty , cli . in , out ) ; err != nil {
2013-06-17 18:45:08 -04:00
utils . Debugf ( "Error hijack: %s" , err )
return err
2013-05-01 23:07:06 -04:00
}
2013-05-07 15:36:24 -04:00
}
2013-06-27 15:48:25 -04:00
if ! config . AttachStdout && ! config . AttachStderr {
<- wait
}
2013-05-01 23:07:06 -04:00
return nil
2013-02-13 20:10:00 -05:00
}
2013-04-23 12:20:53 -04:00
2013-07-17 00:07:41 -04:00
func ( cli * DockerCli ) CmdCp ( args ... string ) error {
cmd := Subcmd ( "cp" , "CONTAINER:RESOURCE HOSTPATH" , "Copy files/folders from the RESOURCE to the HOSTPATH" )
if err := cmd . Parse ( args ) ; err != nil {
return nil
}
if cmd . NArg ( ) != 2 {
cmd . Usage ( )
return nil
}
var copyData APICopy
info := strings . Split ( cmd . Arg ( 0 ) , ":" )
2013-08-24 19:28:36 -04:00
if len ( info ) != 2 {
return fmt . Errorf ( "Error: Resource not specified" )
}
2013-07-17 00:07:41 -04:00
copyData . Resource = info [ 1 ]
copyData . HostPath = cmd . Arg ( 1 )
data , statusCode , err := cli . call ( "POST" , "/containers/" + info [ 0 ] + "/copy" , copyData )
if err != nil {
return err
}
if statusCode == 200 {
2013-07-17 10:25:49 -04:00
r := bytes . NewReader ( data )
2013-07-17 00:07:41 -04:00
if err := Untar ( r , copyData . HostPath ) ; err != nil {
return err
}
}
return nil
}
2013-05-15 10:16:46 -04:00
func ( cli * DockerCli ) call ( method , path string , data interface { } ) ( [ ] byte , int , error ) {
2013-05-01 23:07:06 -04:00
var params io . Reader
2013-04-23 12:20:53 -04:00
if data != nil {
buf , err := json . Marshal ( data )
if err != nil {
2013-05-01 23:07:06 -04:00
return nil , - 1 , err
2013-04-23 12:20:53 -04:00
}
2013-05-01 23:07:06 -04:00
params = bytes . NewBuffer ( buf )
2013-04-22 12:17:47 -04:00
}
2013-05-07 11:19:41 -04:00
2013-06-18 14:59:56 -04:00
req , err := http . NewRequest ( method , fmt . Sprintf ( "/v%g%s" , APIVERSION , path ) , params )
2013-04-22 12:17:47 -04:00
if err != nil {
2013-05-01 23:07:06 -04:00
return nil , - 1 , err
2013-04-22 12:17:47 -04:00
}
2013-05-09 14:24:49 -04:00
req . Header . Set ( "User-Agent" , "Docker-Client/" + VERSION )
2013-08-07 05:35:38 -04:00
req . Host = cli . addr
2013-04-23 12:20:53 -04:00
if data != nil {
req . Header . Set ( "Content-Type" , "application/json" )
2013-05-01 23:07:06 -04:00
} else if method == "POST" {
req . Header . Set ( "Content-Type" , "plain/text" )
2013-04-22 12:17:47 -04:00
}
2013-06-18 14:59:56 -04:00
dial , err := net . Dial ( cli . proto , cli . addr )
if err != nil {
2013-08-15 09:44:11 -04:00
if strings . Contains ( err . Error ( ) , "connection refused" ) {
return nil , - 1 , fmt . Errorf ( "Can't connect to docker daemon. Is 'docker -d' running on this host?" )
}
2013-06-18 14:59:56 -04:00
return nil , - 1 , err
}
clientconn := httputil . NewClientConn ( dial , nil )
resp , err := clientconn . Do ( req )
defer clientconn . Close ( )
2013-05-01 23:07:06 -04:00
if err != nil {
2013-05-09 14:24:49 -04:00
if strings . Contains ( err . Error ( ) , "connection refused" ) {
return nil , - 1 , fmt . Errorf ( "Can't connect to docker daemon. Is 'docker -d' running on this host?" )
}
2013-05-01 23:07:06 -04:00
return nil , - 1 , err
}
defer resp . Body . Close ( )
body , err := ioutil . ReadAll ( resp . Body )
if err != nil {
return nil , - 1 , err
}
2013-05-09 15:42:29 -04:00
if resp . StatusCode < 200 || resp . StatusCode >= 400 {
2013-06-10 11:06:52 -04:00
if len ( body ) == 0 {
return nil , resp . StatusCode , fmt . Errorf ( "Error: %s" , http . StatusText ( resp . StatusCode ) )
}
return nil , resp . StatusCode , fmt . Errorf ( "Error: %s" , body )
2013-02-13 20:10:00 -05:00
}
2013-05-01 23:07:06 -04:00
return body , resp . StatusCode , nil
}
2013-04-22 14:16:32 -04:00
2013-05-16 15:09:06 -04:00
func ( cli * DockerCli ) stream ( method , path string , in io . Reader , out io . Writer ) error {
if ( method == "POST" || method == "PUT" ) && in == nil {
in = bytes . NewReader ( [ ] byte { } )
}
2013-06-18 14:59:56 -04:00
req , err := http . NewRequest ( method , fmt . Sprintf ( "/v%g%s" , APIVERSION , path ) , in )
2013-05-09 17:28:03 -04:00
if err != nil {
return err
}
req . Header . Set ( "User-Agent" , "Docker-Client/" + VERSION )
2013-08-07 05:35:38 -04:00
req . Host = cli . addr
2013-05-09 17:28:03 -04:00
if method == "POST" {
req . Header . Set ( "Content-Type" , "plain/text" )
}
2013-06-18 14:59:56 -04:00
dial , err := net . Dial ( cli . proto , cli . addr )
if err != nil {
2013-08-15 09:44:11 -04:00
if strings . Contains ( err . Error ( ) , "connection refused" ) {
return fmt . Errorf ( "Can't connect to docker daemon. Is 'docker -d' running on this host?" )
}
2013-06-18 14:59:56 -04:00
return err
}
clientconn := httputil . NewClientConn ( dial , nil )
resp , err := clientconn . Do ( req )
defer clientconn . Close ( )
2013-05-09 17:28:03 -04:00
if err != nil {
if strings . Contains ( err . Error ( ) , "connection refused" ) {
return fmt . Errorf ( "Can't connect to docker daemon. Is 'docker -d' running on this host?" )
}
return err
}
defer resp . Body . Close ( )
2013-06-20 21:18:36 -04:00
2013-05-13 05:38:13 -04:00
if resp . StatusCode < 200 || resp . StatusCode >= 400 {
body , err := ioutil . ReadAll ( resp . Body )
if err != nil {
return err
}
2013-06-10 11:06:52 -04:00
if len ( body ) == 0 {
return fmt . Errorf ( "Error :%s" , http . StatusText ( resp . StatusCode ) )
}
return fmt . Errorf ( "Error: %s" , body )
2013-05-13 05:38:13 -04:00
}
2013-08-03 16:55:54 -04:00
if matchesContentType ( resp . Header . Get ( "Content-Type" ) , "application/json" ) {
2013-07-25 10:32:46 -04:00
return utils . DisplayJSONMessagesStream ( resp . Body , out )
2013-05-23 11:16:35 -04:00
} else {
if _ , err := io . Copy ( out , resp . Body ) ; err != nil {
return err
}
2013-04-22 14:16:32 -04:00
}
2013-04-02 15:21:35 -04:00
return nil
2013-02-13 20:10:00 -05:00
}
2013-06-24 17:59:37 -04:00
func ( cli * DockerCli ) hijack ( method , path string , setRawTerminal bool , in io . ReadCloser , out io . Writer ) error {
2013-06-20 21:18:36 -04:00
2013-06-04 14:00:22 -04:00
req , err := http . NewRequest ( method , fmt . Sprintf ( "/v%g%s" , APIVERSION , path ) , nil )
2013-05-01 23:07:06 -04:00
if err != nil {
return err
2013-03-21 05:04:10 -04:00
}
2013-06-20 21:18:36 -04:00
req . Header . Set ( "User-Agent" , "Docker-Client/" + VERSION )
2013-05-07 13:23:50 -04:00
req . Header . Set ( "Content-Type" , "plain/text" )
2013-08-07 05:35:38 -04:00
req . Host = cli . addr
2013-06-20 21:18:36 -04:00
2013-06-18 14:59:56 -04:00
dial , err := net . Dial ( cli . proto , cli . addr )
2013-02-13 20:10:00 -05:00
if err != nil {
2013-08-15 09:44:11 -04:00
if strings . Contains ( err . Error ( ) , "connection refused" ) {
return fmt . Errorf ( "Can't connect to docker daemon. Is 'docker -d' running on this host?" )
}
2013-04-23 12:20:53 -04:00
return err
2013-04-22 12:17:47 -04:00
}
2013-04-23 12:20:53 -04:00
clientconn := httputil . NewClientConn ( dial , nil )
defer clientconn . Close ( )
2013-06-20 21:18:36 -04:00
// Server hijacks the connection, error 'connection closed' expected
clientconn . Do ( req )
2013-05-06 05:31:22 -04:00
rwc , br := clientconn . Hijack ( )
2013-04-23 12:20:53 -04:00
defer rwc . Close ( )
2013-08-13 16:30:08 -04:00
var receiveStdout ( chan error )
if out != nil {
receiveStdout = utils . Go ( func ( ) error {
_ , err := io . Copy ( out , br )
utils . Debugf ( "[hijack] End of stdout" )
return err
} )
}
2013-05-06 05:31:22 -04:00
2013-06-24 17:59:37 -04:00
if in != nil && setRawTerminal && cli . isTerminal && os . Getenv ( "NORAW" ) == "" {
oldState , err := term . SetRawTerminal ( cli . terminalFd )
2013-06-04 09:51:12 -04:00
if err != nil {
2013-04-29 09:12:18 -04:00
return err
}
2013-06-24 17:59:37 -04:00
defer term . RestoreTerminal ( cli . terminalFd , oldState )
2013-02-13 20:10:00 -05:00
}
2013-06-24 21:22:02 -04:00
2013-05-14 18:37:35 -04:00
sendStdin := utils . Go ( func ( ) error {
2013-06-24 17:59:37 -04:00
if in != nil {
io . Copy ( rwc , in )
2013-07-23 20:27:49 -04:00
utils . Debugf ( "[hijack] End of stdin" )
2013-06-24 17:59:37 -04:00
}
2013-06-27 08:57:19 -04:00
if tcpc , ok := rwc . ( * net . TCPConn ) ; ok {
if err := tcpc . CloseWrite ( ) ; err != nil {
utils . Debugf ( "Couldn't send EOF: %s\n" , err )
}
} else if unixc , ok := rwc . ( * net . UnixConn ) ; ok {
if err := unixc . CloseWrite ( ) ; err != nil {
utils . Debugf ( "Couldn't send EOF: %s\n" , err )
}
2013-05-07 16:15:21 -04:00
}
2013-06-13 15:57:35 -04:00
// Discard errors due to pipe interruption
return nil
2013-04-23 12:20:53 -04:00
} )
2013-08-13 16:30:08 -04:00
if out != nil {
if err := <- receiveStdout ; err != nil {
utils . Debugf ( "Error receiveStdout: %s" , err )
return err
}
2013-02-13 20:10:00 -05:00
}
2013-05-10 01:28:52 -04:00
2013-06-24 17:59:37 -04:00
if ! cli . isTerminal {
2013-04-23 12:20:53 -04:00
if err := <- sendStdin ; err != nil {
2013-06-13 15:57:35 -04:00
utils . Debugf ( "Error sendStdin: %s" , err )
2013-04-23 12:20:53 -04:00
return err
}
}
return nil
2013-02-13 20:10:00 -05:00
}
2013-07-08 13:20:13 -04:00
func ( cli * DockerCli ) getTtySize ( ) ( int , int ) {
2013-06-24 17:59:37 -04:00
if ! cli . isTerminal {
2013-07-08 13:20:13 -04:00
return 0 , 0
2013-06-24 17:59:37 -04:00
}
ws , err := term . GetWinsize ( cli . terminalFd )
2013-05-24 17:44:16 -04:00
if err != nil {
utils . Debugf ( "Error getting size: %s" , err )
2013-07-08 14:19:12 -04:00
if ws == nil {
return 0 , 0
}
2013-05-24 17:44:16 -04:00
}
2013-07-08 13:20:13 -04:00
return int ( ws . Height ) , int ( ws . Width )
}
func ( cli * DockerCli ) resizeTty ( id string ) {
height , width := cli . getTtySize ( )
if height == 0 && width == 0 {
return
2013-05-24 17:44:16 -04:00
}
v := url . Values { }
2013-07-08 13:20:13 -04:00
v . Set ( "h" , strconv . Itoa ( height ) )
v . Set ( "w" , strconv . Itoa ( width ) )
2013-05-24 17:44:16 -04:00
if _ , _ , err := cli . call ( "POST" , "/containers/" + id + "/resize?" + v . Encode ( ) , nil ) ; err != nil {
utils . Debugf ( "Error resize: %s" , err )
}
}
2013-06-24 17:59:37 -04:00
func ( cli * DockerCli ) monitorTtySize ( id string ) error {
if ! cli . isTerminal {
return fmt . Errorf ( "Impossible to monitor size on non-tty" )
}
2013-05-24 17:44:16 -04:00
cli . resizeTty ( id )
2013-07-29 13:28:41 -04:00
sigchan := make ( chan os . Signal , 1 )
signal . Notify ( sigchan , syscall . SIGWINCH )
2013-05-24 17:44:16 -04:00
go func ( ) {
2013-08-09 20:42:20 -04:00
for _ = range sigchan {
2013-07-29 14:13:59 -04:00
cli . resizeTty ( id )
2013-05-24 17:44:16 -04:00
}
} ( )
2013-06-24 17:59:37 -04:00
return nil
2013-05-24 17:44:16 -04:00
}
2013-04-22 12:17:47 -04:00
func Subcmd ( name , signature , description string ) * flag . FlagSet {
flags := flag . NewFlagSet ( name , flag . ContinueOnError )
flags . Usage = func ( ) {
2013-06-24 17:15:52 -04:00
// FIXME: use custom stdout or return error
fmt . Fprintf ( os . Stdout , "\nUsage: docker %s %s\n\n%s\n\n" , name , signature , description )
2013-04-22 12:17:47 -04:00
flags . PrintDefaults ( )
}
return flags
2013-02-13 20:10:00 -05:00
}
2013-05-13 05:48:27 -04:00
2013-08-16 10:29:40 -04:00
func ( cli * DockerCli ) LoadConfigFile ( ) ( err error ) {
cli . configFile , err = auth . LoadConfig ( os . Getenv ( "HOME" ) )
if err != nil {
fmt . Fprintf ( cli . err , "WARNING: %s\n" , err )
}
return err
}
2013-06-24 17:15:52 -04:00
func NewDockerCli ( in io . ReadCloser , out , err io . Writer , proto , addr string ) * DockerCli {
2013-06-24 17:59:37 -04:00
var (
2013-07-02 18:27:22 -04:00
isTerminal = false
2013-06-24 17:59:37 -04:00
terminalFd uintptr
)
if in != nil {
if file , ok := in . ( * os . File ) ; ok {
terminalFd = file . Fd ( )
isTerminal = term . IsTerminal ( terminalFd )
}
}
if err == nil {
err = out
}
2013-06-24 17:15:52 -04:00
return & DockerCli {
proto : proto ,
addr : addr ,
in : in ,
out : out ,
err : err ,
2013-06-24 17:59:37 -04:00
isTerminal : isTerminal ,
terminalFd : terminalFd ,
2013-06-24 17:15:52 -04:00
}
2013-05-13 05:48:27 -04:00
}
2013-05-15 10:16:46 -04:00
type DockerCli struct {
2013-06-18 14:59:56 -04:00
proto string
addr string
2013-07-23 11:04:31 -04:00
configFile * auth . ConfigFile
2013-06-24 17:15:52 -04:00
in io . ReadCloser
out io . Writer
err io . Writer
2013-06-24 17:59:37 -04:00
isTerminal bool
terminalFd uintptr
2013-05-13 05:48:27 -04:00
}