Add comments.
This commit is contained in:
parent
a657d6ce68
commit
b93e718ac7
@ -96,8 +96,11 @@ func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskC
|
|||||||
var opts []oci.SpecOpts
|
var opts []oci.SpecOpts
|
||||||
|
|
||||||
if config.Entrypoint != nil {
|
if config.Entrypoint != nil {
|
||||||
|
// WithProcessArgs replaces the args on the generated spec.
|
||||||
opts = append(opts, oci.WithProcessArgs(args...))
|
opts = append(opts, oci.WithProcessArgs(args...))
|
||||||
} else {
|
} else {
|
||||||
|
// WithImageConfigArgs configures the spec to from the configuration of an Image
|
||||||
|
// with additional args that replaces the CMD of the image.
|
||||||
opts = append(opts, oci.WithImageConfigArgs(containerConfig.Image, args))
|
opts = append(opts, oci.WithImageConfigArgs(containerConfig.Image, args))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user