Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: 47c56e4353792e16f994a35ea4063768bee6590e Component: engine
13 lines
328 B
Go
13 lines
328 B
Go
package daemon
|
|
|
|
import "github.com/docker/docker/api/types"
|
|
|
|
// This sets platform-specific fields
|
|
func setPlatformSpecificContainerFields(container *Container, contJSONBase *types.ContainerJSONBase) *types.ContainerJSONBase {
|
|
return contJSONBase
|
|
}
|
|
|
|
func addMountPoints(container *Container) []types.MountPoint {
|
|
return nil
|
|
}
|