mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7b2e5216b8
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
20 lines
571 B
Go
20 lines
571 B
Go
package daemon
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/container"
|
|
"github.com/docker/docker/libcontainerd"
|
|
)
|
|
|
|
func (daemon *Daemon) getLibcontainerdCreateOptions(container *container.Container) (*[]libcontainerd.CreateOption, error) {
|
|
createOptions := []libcontainerd.CreateOption{}
|
|
|
|
rt := daemon.configStore.GetRuntime(container.HostConfig.Runtime)
|
|
if rt == nil {
|
|
return nil, fmt.Errorf("No such runtime '%s'", container.HostConfig.Runtime)
|
|
}
|
|
createOptions = append(createOptions, libcontainerd.WithRuntime(rt.Path, rt.Args))
|
|
|
|
return &createOptions, nil
|
|
}
|