2014-02-11 23:04:39 -05:00
|
|
|
package runconfig
|
|
|
|
|
|
|
|
import (
|
2014-07-24 18:19:50 -04:00
|
|
|
"github.com/docker/docker/engine"
|
|
|
|
"github.com/docker/docker/nat"
|
2014-02-11 23:04:39 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Note: the Config structure should hold only portable information about the container.
|
|
|
|
// Here, "portable" means "independent from the host we are running on".
|
|
|
|
// Non-portable information *should* appear in HostConfig.
|
|
|
|
type Config struct {
|
|
|
|
Hostname string
|
|
|
|
Domainname string
|
|
|
|
User string
|
move resources from Config to HostConfig
Cgroup resources are host dependent, they should be in hostConfig.
For backward compatibility, we just copy it to hostConfig, and leave it in
Config for now, so there is no regressions, but the right way to use this
throught json is to put it in HostConfig, like:
{
"Hostname": "",
...
"HostConfig": {
"CpuShares": 512,
"Memory": 314572800,
...
}
}
As we will add CpusetMems, CpusetCpus is definitely a better name, but some
users are already using Cpuset in their http APIs, we also make it compatible.
The main idea is keep using Cpuset in Config Struct, and make it has the same
value as CpusetCpus, but not always, some scenarios:
- Users use --cpuset in docker command, it can setup cpuset.cpus and can
get Cpuset field from docker inspect or other http API which will get
config info.
- Users use --cpuset-cpus in docker command, ditto.
- Users use Cpuset field in their http APIs, ditto.
- Users use CpusetCpus field in their http APIs, they won't get Cpuset field
in Config info, because by then, they should already know what happens
to Cpuset.
Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
2015-03-10 21:31:18 -04:00
|
|
|
Memory int64 // FIXME: we keep it for backward compatibility, it has been moved to hostConfig.
|
|
|
|
MemorySwap int64 // FIXME: it has been moved to hostConfig.
|
|
|
|
CpuShares int64 // FIXME: it has been moved to hostConfig.
|
|
|
|
Cpuset string // FIXME: it has been moved to hostConfig and renamed to CpusetCpus.
|
2014-02-11 23:04:39 -05:00
|
|
|
AttachStdin bool
|
|
|
|
AttachStdout bool
|
|
|
|
AttachStderr bool
|
|
|
|
PortSpecs []string // Deprecated - Can be in the format of 8080/tcp
|
|
|
|
ExposedPorts map[nat.Port]struct{}
|
|
|
|
Tty bool // Attach standard streams to a tty, including stdin if it is not closed.
|
|
|
|
OpenStdin bool // Open stdin
|
|
|
|
StdinOnce bool // If true, close stdin after the 1 attached client disconnects.
|
|
|
|
Env []string
|
|
|
|
Cmd []string
|
|
|
|
Image string // Name of the image as it was passed by the operator (eg. could be symbolic)
|
|
|
|
Volumes map[string]struct{}
|
|
|
|
WorkingDir string
|
|
|
|
Entrypoint []string
|
|
|
|
NetworkDisabled bool
|
2014-10-03 17:02:17 -04:00
|
|
|
MacAddress string
|
2014-02-11 23:04:39 -05:00
|
|
|
OnBuild []string
|
2015-02-17 10:20:06 -05:00
|
|
|
Labels map[string]string
|
2014-02-11 23:04:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func ContainerConfigFromJob(job *engine.Job) *Config {
|
|
|
|
config := &Config{
|
|
|
|
Hostname: job.Getenv("Hostname"),
|
|
|
|
Domainname: job.Getenv("Domainname"),
|
|
|
|
User: job.Getenv("User"),
|
|
|
|
Memory: job.GetenvInt64("Memory"),
|
|
|
|
MemorySwap: job.GetenvInt64("MemorySwap"),
|
|
|
|
CpuShares: job.GetenvInt64("CpuShares"),
|
2014-05-12 20:44:57 -04:00
|
|
|
Cpuset: job.Getenv("Cpuset"),
|
2014-02-11 23:04:39 -05:00
|
|
|
AttachStdin: job.GetenvBool("AttachStdin"),
|
|
|
|
AttachStdout: job.GetenvBool("AttachStdout"),
|
|
|
|
AttachStderr: job.GetenvBool("AttachStderr"),
|
|
|
|
Tty: job.GetenvBool("Tty"),
|
|
|
|
OpenStdin: job.GetenvBool("OpenStdin"),
|
|
|
|
StdinOnce: job.GetenvBool("StdinOnce"),
|
|
|
|
Image: job.Getenv("Image"),
|
|
|
|
WorkingDir: job.Getenv("WorkingDir"),
|
|
|
|
NetworkDisabled: job.GetenvBool("NetworkDisabled"),
|
2014-10-03 17:02:17 -04:00
|
|
|
MacAddress: job.Getenv("MacAddress"),
|
2014-02-11 23:04:39 -05:00
|
|
|
}
|
|
|
|
job.GetenvJson("ExposedPorts", &config.ExposedPorts)
|
|
|
|
job.GetenvJson("Volumes", &config.Volumes)
|
|
|
|
if PortSpecs := job.GetenvList("PortSpecs"); PortSpecs != nil {
|
|
|
|
config.PortSpecs = PortSpecs
|
|
|
|
}
|
|
|
|
if Env := job.GetenvList("Env"); Env != nil {
|
|
|
|
config.Env = Env
|
|
|
|
}
|
|
|
|
if Cmd := job.GetenvList("Cmd"); Cmd != nil {
|
|
|
|
config.Cmd = Cmd
|
|
|
|
}
|
2015-02-17 10:20:06 -05:00
|
|
|
|
|
|
|
job.GetenvJson("Labels", &config.Labels)
|
|
|
|
|
2014-02-11 23:04:39 -05:00
|
|
|
if Entrypoint := job.GetenvList("Entrypoint"); Entrypoint != nil {
|
|
|
|
config.Entrypoint = Entrypoint
|
|
|
|
}
|
|
|
|
return config
|
|
|
|
}
|