1589cc0a85
Solaris is no longer being worked on, so these files are now just dead code. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
11 lines
260 B
Go
11 lines
260 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/api/types/container"
|
|
"github.com/docker/docker/libcontainerd"
|
|
)
|
|
|
|
func toContainerdResources(resources container.Resources) *libcontainerd.Resources {
|
|
// We don't support update, so do nothing
|
|
return nil
|
|
}
|