@@ -88,23 +88,24 @@ type ServiceConfig struct {
8888 Name string `yaml:"-" json:"-"`
8989 Profiles []string `yaml:"profiles,omitempty" json:"profiles,omitempty"`
9090
91- Annotations Mapping `yaml:"annotations,omitempty" json:"annotations,omitempty"`
92- Attach * bool `yaml:"attach,omitempty" json:"attach,omitempty"`
93- Build * BuildConfig `yaml:"build,omitempty" json:"build,omitempty"`
94- BlkioConfig * BlkioConfig `yaml:"blkio_config,omitempty" json:"blkio_config,omitempty"`
95- CapAdd []string `yaml:"cap_add,omitempty" json:"cap_add,omitempty"`
96- CapDrop []string `yaml:"cap_drop,omitempty" json:"cap_drop,omitempty"`
97- CgroupParent string `yaml:"cgroup_parent,omitempty" json:"cgroup_parent,omitempty"`
98- Cgroup string `yaml:"cgroup,omitempty" json:"cgroup,omitempty"`
99- CPUCount int64 `yaml:"cpu_count,omitempty" json:"cpu_count,omitempty"`
100- CPUPercent float32 `yaml:"cpu_percent,omitempty" json:"cpu_percent,omitempty"`
101- CPUPeriod int64 `yaml:"cpu_period,omitempty" json:"cpu_period,omitempty"`
102- CPUQuota int64 `yaml:"cpu_quota,omitempty" json:"cpu_quota,omitempty"`
103- CPURTPeriod int64 `yaml:"cpu_rt_period,omitempty" json:"cpu_rt_period,omitempty"`
104- CPURTRuntime int64 `yaml:"cpu_rt_runtime,omitempty" json:"cpu_rt_runtime,omitempty"`
105- CPUS float32 `yaml:"cpus,omitempty" json:"cpus,omitempty"`
106- CPUSet string `yaml:"cpuset,omitempty" json:"cpuset,omitempty"`
107- CPUShares int64 `yaml:"cpu_shares,omitempty" json:"cpu_shares,omitempty"`
91+ Annotations Mapping `yaml:"annotations,omitempty" json:"annotations,omitempty"`
92+ Attach * bool `yaml:"attach,omitempty" json:"attach,omitempty"`
93+ Build * BuildConfig `yaml:"build,omitempty" json:"build,omitempty"`
94+ Develop * DevelopConfig `yaml:"develop,omitempty" json:"develop,omitempty"`
95+ BlkioConfig * BlkioConfig `yaml:"blkio_config,omitempty" json:"blkio_config,omitempty"`
96+ CapAdd []string `yaml:"cap_add,omitempty" json:"cap_add,omitempty"`
97+ CapDrop []string `yaml:"cap_drop,omitempty" json:"cap_drop,omitempty"`
98+ CgroupParent string `yaml:"cgroup_parent,omitempty" json:"cgroup_parent,omitempty"`
99+ Cgroup string `yaml:"cgroup,omitempty" json:"cgroup,omitempty"`
100+ CPUCount int64 `yaml:"cpu_count,omitempty" json:"cpu_count,omitempty"`
101+ CPUPercent float32 `yaml:"cpu_percent,omitempty" json:"cpu_percent,omitempty"`
102+ CPUPeriod int64 `yaml:"cpu_period,omitempty" json:"cpu_period,omitempty"`
103+ CPUQuota int64 `yaml:"cpu_quota,omitempty" json:"cpu_quota,omitempty"`
104+ CPURTPeriod int64 `yaml:"cpu_rt_period,omitempty" json:"cpu_rt_period,omitempty"`
105+ CPURTRuntime int64 `yaml:"cpu_rt_runtime,omitempty" json:"cpu_rt_runtime,omitempty"`
106+ CPUS float32 `yaml:"cpus,omitempty" json:"cpus,omitempty"`
107+ CPUSet string `yaml:"cpuset,omitempty" json:"cpuset,omitempty"`
108+ CPUShares int64 `yaml:"cpu_shares,omitempty" json:"cpu_shares,omitempty"`
108109
109110 // Command for the service containers.
110111 // If set, overrides COMMAND from the image.
0 commit comments