2015-02-24 14:12:47 -05:00
|
|
|
package types
|
|
|
|
|
2015-04-13 10:17:14 -04:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/docker/docker/daemon/network"
|
|
|
|
"github.com/docker/docker/pkg/version"
|
|
|
|
"github.com/docker/docker/runconfig"
|
|
|
|
)
|
2015-04-16 15:48:04 -04:00
|
|
|
|
2015-02-24 14:12:47 -05:00
|
|
|
// ContainerCreateResponse contains the information returned to a client on the
|
|
|
|
// creation of a new container.
|
|
|
|
type ContainerCreateResponse struct {
|
|
|
|
// ID is the ID of the created container.
|
|
|
|
ID string `json:"Id"`
|
|
|
|
|
|
|
|
// Warnings are any warnings encountered during the creation of the container.
|
|
|
|
Warnings []string `json:"Warnings"`
|
|
|
|
}
|
2015-03-23 17:03:54 -04:00
|
|
|
|
|
|
|
// POST /containers/{name:.*}/exec
|
|
|
|
type ContainerExecCreateResponse struct {
|
|
|
|
// ID is the exec ID.
|
|
|
|
ID string `json:"Id"`
|
|
|
|
}
|
2015-03-23 18:32:50 -04:00
|
|
|
|
|
|
|
// POST /auth
|
|
|
|
type AuthResponse struct {
|
|
|
|
// Status is the authentication status
|
|
|
|
Status string `json:"Status"`
|
|
|
|
}
|
2015-03-25 23:01:14 -04:00
|
|
|
|
2015-03-26 00:22:45 -04:00
|
|
|
// POST "/containers/"+containerID+"/wait"
|
2015-03-25 23:01:14 -04:00
|
|
|
type ContainerWaitResponse struct {
|
|
|
|
// StatusCode is the status code of the wait job
|
|
|
|
StatusCode int `json:"StatusCode"`
|
|
|
|
}
|
2015-03-28 12:39:24 -04:00
|
|
|
|
|
|
|
// POST "/commit?container="+containerID
|
|
|
|
type ContainerCommitResponse struct {
|
|
|
|
ID string `json:"Id"`
|
|
|
|
}
|
2015-04-02 18:52:34 -04:00
|
|
|
|
|
|
|
// GET "/containers/{name:.*}/changes"
|
|
|
|
type ContainerChange struct {
|
|
|
|
Kind int
|
|
|
|
Path string
|
|
|
|
}
|
2015-04-03 11:31:30 -04:00
|
|
|
|
|
|
|
// GET "/images/{name:.*}/history"
|
|
|
|
type ImageHistory struct {
|
|
|
|
ID string `json:"Id"`
|
2015-05-14 20:31:34 -04:00
|
|
|
Created int64
|
2015-04-03 11:31:30 -04:00
|
|
|
CreatedBy string
|
|
|
|
Tags []string
|
|
|
|
Size int64
|
2015-01-04 01:47:01 -05:00
|
|
|
Comment string
|
2015-04-03 11:31:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// DELETE "/images/{name:.*}"
|
|
|
|
type ImageDelete struct {
|
|
|
|
Untagged string `json:",omitempty"`
|
|
|
|
Deleted string `json:",omitempty"`
|
|
|
|
}
|
2015-04-03 20:39:06 -04:00
|
|
|
|
|
|
|
// GET "/images/json"
|
|
|
|
type Image struct {
|
|
|
|
ID string `json:"Id"`
|
|
|
|
ParentId string
|
|
|
|
RepoTags []string
|
|
|
|
RepoDigests []string
|
2015-05-14 20:31:34 -04:00
|
|
|
Created int
|
2015-04-03 20:39:06 -04:00
|
|
|
Size int
|
|
|
|
VirtualSize int
|
|
|
|
Labels map[string]string
|
|
|
|
}
|
|
|
|
|
2015-06-15 14:05:10 -04:00
|
|
|
type GraphDriverData struct {
|
|
|
|
Name string
|
|
|
|
Data map[string]string
|
|
|
|
}
|
|
|
|
|
2015-03-26 15:43:00 -04:00
|
|
|
// GET "/images/{name:.*}/json"
|
|
|
|
type ImageInspect struct {
|
|
|
|
Id string
|
|
|
|
Parent string
|
|
|
|
Comment string
|
|
|
|
Created time.Time
|
|
|
|
Container string
|
|
|
|
ContainerConfig *runconfig.Config
|
|
|
|
DockerVersion string
|
|
|
|
Author string
|
|
|
|
Config *runconfig.Config
|
|
|
|
Architecture string
|
|
|
|
Os string
|
|
|
|
Size int64
|
|
|
|
VirtualSize int64
|
2015-06-15 14:05:10 -04:00
|
|
|
GraphDriver GraphDriverData
|
2015-03-26 15:43:00 -04:00
|
|
|
}
|
|
|
|
|
2015-04-03 20:39:06 -04:00
|
|
|
// GET "/containers/json"
|
|
|
|
type Port struct {
|
2015-06-12 12:49:53 -04:00
|
|
|
IP string `json:",omitempty"`
|
2015-04-03 20:39:06 -04:00
|
|
|
PrivatePort int
|
2015-06-12 12:49:53 -04:00
|
|
|
PublicPort int `json:",omitempty"`
|
2015-04-03 20:39:06 -04:00
|
|
|
Type string
|
|
|
|
}
|
|
|
|
|
|
|
|
type Container struct {
|
2015-06-03 12:23:14 -04:00
|
|
|
ID string `json:"Id"`
|
|
|
|
Names []string
|
|
|
|
Image string
|
|
|
|
Command string
|
|
|
|
Created int
|
|
|
|
Ports []Port
|
2015-06-03 17:13:56 -04:00
|
|
|
SizeRw int `json:",omitempty"`
|
|
|
|
SizeRootFs int `json:",omitempty"`
|
2015-06-03 12:23:14 -04:00
|
|
|
Labels map[string]string
|
|
|
|
Status string
|
2015-04-03 20:39:06 -04:00
|
|
|
}
|
2015-04-09 16:05:31 -04:00
|
|
|
|
|
|
|
// POST "/containers/"+containerID+"/copy"
|
|
|
|
type CopyConfig struct {
|
|
|
|
Resource string
|
|
|
|
}
|
2015-04-09 18:13:01 -04:00
|
|
|
|
|
|
|
// GET "/containers/{name:.*}/top"
|
|
|
|
type ContainerProcessList struct {
|
|
|
|
Processes [][]string
|
|
|
|
Titles []string
|
|
|
|
}
|
2015-04-16 15:48:04 -04:00
|
|
|
|
|
|
|
type Version struct {
|
|
|
|
Version string
|
|
|
|
ApiVersion version.Version
|
|
|
|
GitCommit string
|
|
|
|
GoVersion string
|
|
|
|
Os string
|
|
|
|
Arch string
|
|
|
|
KernelVersion string `json:",omitempty"`
|
2015-06-03 19:56:09 -04:00
|
|
|
Experimental bool `json:",omitempty"`
|
2015-04-16 15:48:04 -04:00
|
|
|
}
|
2015-04-10 13:26:30 -04:00
|
|
|
|
|
|
|
// GET "/info"
|
|
|
|
type Info struct {
|
|
|
|
ID string
|
|
|
|
Containers int
|
|
|
|
Images int
|
|
|
|
Driver string
|
|
|
|
DriverStatus [][2]string
|
|
|
|
MemoryLimit bool
|
|
|
|
SwapLimit bool
|
2015-04-08 04:58:59 -04:00
|
|
|
CpuCfsPeriod bool
|
2015-04-20 11:16:47 -04:00
|
|
|
CpuCfsQuota bool
|
2015-04-10 13:26:30 -04:00
|
|
|
IPv4Forwarding bool
|
2015-06-16 21:19:11 -04:00
|
|
|
BridgeNfIptables bool
|
|
|
|
BridgeNfIp6tables bool
|
2015-04-10 13:26:30 -04:00
|
|
|
Debug bool
|
|
|
|
NFd int
|
2015-02-26 06:53:55 -05:00
|
|
|
OomKillDisable bool
|
2015-04-10 13:26:30 -04:00
|
|
|
NGoroutines int
|
|
|
|
SystemTime string
|
|
|
|
ExecutionDriver string
|
|
|
|
LoggingDriver string
|
|
|
|
NEventsListener int
|
|
|
|
KernelVersion string
|
|
|
|
OperatingSystem string
|
|
|
|
IndexServerAddress string
|
|
|
|
RegistryConfig interface{}
|
|
|
|
InitSha1 string
|
|
|
|
InitPath string
|
|
|
|
NCPU int
|
|
|
|
MemTotal int64
|
|
|
|
DockerRootDir string
|
|
|
|
HttpProxy string
|
|
|
|
HttpsProxy string
|
|
|
|
NoProxy string
|
|
|
|
Name string
|
|
|
|
Labels []string
|
2015-05-19 18:09:58 -04:00
|
|
|
ExperimentalBuild bool
|
2015-04-10 13:26:30 -04:00
|
|
|
}
|
2015-04-17 01:36:23 -04:00
|
|
|
|
|
|
|
// This struct is a temp struct used by execStart
|
|
|
|
// Config fields is part of ExecConfig in runconfig package
|
|
|
|
type ExecStartCheck struct {
|
|
|
|
// ExecStart will first check if it's detached
|
|
|
|
Detach bool
|
|
|
|
// Check if there's a tty
|
|
|
|
Tty bool
|
|
|
|
}
|
2015-04-13 10:17:14 -04:00
|
|
|
|
|
|
|
type ContainerState struct {
|
|
|
|
Running bool
|
|
|
|
Paused bool
|
|
|
|
Restarting bool
|
|
|
|
OOMKilled bool
|
|
|
|
Dead bool
|
|
|
|
Pid int
|
|
|
|
ExitCode int
|
|
|
|
Error string
|
|
|
|
StartedAt time.Time
|
|
|
|
FinishedAt time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
// GET "/containers/{name:.*}/json"
|
2015-06-02 17:37:59 -04:00
|
|
|
type ContainerJSONBase struct {
|
2015-04-13 10:17:14 -04:00
|
|
|
Id string
|
|
|
|
Created time.Time
|
|
|
|
Path string
|
|
|
|
Args []string
|
|
|
|
State *ContainerState
|
|
|
|
Image string
|
|
|
|
NetworkSettings *network.Settings
|
|
|
|
ResolvConfPath string
|
|
|
|
HostnamePath string
|
|
|
|
HostsPath string
|
|
|
|
LogPath string
|
|
|
|
Name string
|
|
|
|
RestartCount int
|
|
|
|
Driver string
|
|
|
|
ExecDriver string
|
|
|
|
MountLabel string
|
|
|
|
ProcessLabel string
|
|
|
|
Volumes map[string]string
|
|
|
|
VolumesRW map[string]bool
|
|
|
|
AppArmorProfile string
|
|
|
|
ExecIDs []string
|
|
|
|
HostConfig *runconfig.HostConfig
|
2015-06-15 14:05:10 -04:00
|
|
|
GraphDriver GraphDriverData
|
2015-04-13 10:17:14 -04:00
|
|
|
}
|
2015-06-02 17:37:59 -04:00
|
|
|
|
|
|
|
type ContainerJSON struct {
|
|
|
|
*ContainerJSONBase
|
|
|
|
Config *runconfig.Config
|
|
|
|
}
|
|
|
|
|
|
|
|
// backcompatibility struct along with ContainerConfig
|
|
|
|
type ContainerJSONRaw struct {
|
|
|
|
*ContainerJSONBase
|
|
|
|
Config *ContainerConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
type ContainerConfig struct {
|
|
|
|
*runconfig.Config
|
|
|
|
|
|
|
|
// backward compatibility, they now live in HostConfig
|
|
|
|
Memory int64
|
|
|
|
MemorySwap int64
|
|
|
|
CpuShares int64
|
|
|
|
Cpuset string
|
|
|
|
}
|