Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: 47c56e4353792e16f994a35ea4063768bee6590e Component: engine
11 lines
282 B
Go
11 lines
282 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/runconfig"
|
|
)
|
|
|
|
// createContainerPlatformSpecificSettings performs platform specific container create functionality
|
|
func createContainerPlatformSpecificSettings(container *Container, config *runconfig.Config) error {
|
|
return nil
|
|
}
|