dotcloud/docker

View on GitHub
daemon/update_windows.go

Summary

Maintainability
A
0 mins
Test Coverage
package daemon // import "github.com/docker/docker/daemon"

import (
    "github.com/docker/docker/api/types/container"
    libcontainerdtypes "github.com/docker/docker/libcontainerd/types"
)

func toContainerdResources(resources container.Resources) *libcontainerdtypes.Resources {
    // We don't support update, so do nothing
    return nil
}