mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1285c6d125
Signed-off-by: Olli Janatuinen <olli.janatuinen@gmail.com>
15 lines
469 B
Go
15 lines
469 B
Go
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
"github.com/Microsoft/hcsshim/cmd/containerd-shim-runhcs-v1/options"
|
|
"github.com/docker/docker/container"
|
|
"github.com/docker/docker/pkg/system"
|
|
)
|
|
|
|
func (daemon *Daemon) getLibcontainerdCreateOptions(_ *container.Container) (string, interface{}, error) {
|
|
if system.ContainerdRuntimeSupported() {
|
|
opts := &options.Options{}
|
|
return "io.containerd.runhcs.v1", opts, nil
|
|
}
|
|
return "", nil, nil
|
|
}
|