mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
70 lines
1.1 KiB
Go
70 lines
1.1 KiB
Go
package docker
|
|
|
|
type APIHistory struct {
|
|
ID string `json:"Id"`
|
|
Created int64
|
|
CreatedBy string `json:",omitempty"`
|
|
}
|
|
|
|
type APIImages struct {
|
|
Repository string `json:",omitempty"`
|
|
Tag string `json:",omitempty"`
|
|
ID string `json:"Id"`
|
|
Created int64
|
|
}
|
|
|
|
type APIInfo struct {
|
|
Debug bool
|
|
Containers int
|
|
Images int
|
|
NFd int `json:",omitempty"`
|
|
NGoroutines int `json:",omitempty"`
|
|
MemoryLimit bool `json:",omitempty"`
|
|
SwapLimit bool `json:",omitempty"`
|
|
}
|
|
|
|
type APIContainers struct {
|
|
ID string `json:"Id"`
|
|
Image string
|
|
Command string
|
|
Created int64
|
|
Status string
|
|
Ports string
|
|
}
|
|
|
|
type APISearch struct {
|
|
Name string
|
|
Description string
|
|
}
|
|
|
|
type APIID struct {
|
|
ID string `json:"Id"`
|
|
}
|
|
|
|
type APIRun struct {
|
|
ID string `json:"Id"`
|
|
Warnings []string `json:",omitempty"`
|
|
}
|
|
|
|
type APIPort struct {
|
|
Port string
|
|
}
|
|
|
|
type APIVersion struct {
|
|
Version string
|
|
GitCommit string `json:",omitempty"`
|
|
GoVersion string `json:",omitempty"`
|
|
}
|
|
|
|
type APIWait struct {
|
|
StatusCode int
|
|
}
|
|
|
|
type APIAuth struct {
|
|
Status string
|
|
}
|
|
|
|
type APIImageConfig struct {
|
|
ID string `json:"Id"`
|
|
*Config
|
|
}
|