2016-06-07 03:45:21 -04:00
|
|
|
// +build !windows
|
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
2016-05-23 17:49:50 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/docker/docker/container"
|
|
|
|
)
|
|
|
|
|
2017-09-22 09:52:41 -04:00
|
|
|
// getLibcontainerdCreateOptions callers must hold a lock on the container
|
2020-07-07 16:33:46 -04:00
|
|
|
func (daemon *Daemon) getLibcontainerdCreateOptions(container *container.Container) (string, interface{}, error) {
|
2016-06-20 14:21:01 -04:00
|
|
|
// Ensure a runtime has been assigned to this container
|
|
|
|
if container.HostConfig.Runtime == "" {
|
2017-01-12 14:24:30 -05:00
|
|
|
container.HostConfig.Runtime = daemon.configStore.GetDefaultRuntimeName()
|
2017-03-27 13:18:53 -04:00
|
|
|
container.CheckpointTo(daemon.containersReplica)
|
2016-06-20 14:21:01 -04:00
|
|
|
}
|
|
|
|
|
2021-01-04 14:43:19 -05:00
|
|
|
rt, err := daemon.getRuntime(container.HostConfig.Runtime)
|
|
|
|
if err != nil {
|
|
|
|
return "", nil, translateContainerdStartErr(container.Path, container.SetExitCode, err)
|
2016-08-26 09:33:26 -04:00
|
|
|
}
|
2016-05-23 17:49:50 -04:00
|
|
|
|
2020-07-07 16:33:46 -04:00
|
|
|
return rt.Shim.Binary, rt.Shim.Opts, nil
|
2016-05-23 17:49:50 -04:00
|
|
|
}
|