Signed-off-by: John Howard <jhoward@microsoft.com> Signed-off-by: John Starks <jostarks@microsoft.com> Signed-off-by: Darren Stahl <darst@microsoft.com> Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com> Upstream-commit: 94d70d835500bec3b171425271916d3e40f29635 Component: engine
14 lines
264 B
Go
14 lines
264 B
Go
// +build windows
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/libcontainerd"
|
|
"github.com/docker/engine-api/types/container"
|
|
)
|
|
|
|
func toContainerdResources(resources container.Resources) libcontainerd.Resources {
|
|
var r libcontainerd.Resources
|
|
return r
|
|
}
|