18 lines
526 B
Go
18 lines
526 B
Go
|
//go:build !linux
|
||
|
|
||
|
package daemon // import "github.com/docker/docker/daemon"
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/docker/docker/container"
|
||
|
"github.com/docker/docker/libcontainerd/types"
|
||
|
specs "github.com/opencontainers/runtime-spec/specs-go"
|
||
|
)
|
||
|
|
||
|
// initializeCreatedTask performs any initialization that needs to be done to
|
||
|
// prepare a freshly-created task to be started.
|
||
|
func (daemon *Daemon) initializeCreatedTask(ctx context.Context, tsk types.Task, container *container.Container, spec *specs.Spec) error {
|
||
|
return nil
|
||
|
}
|