зеркало из https://github.com/microsoft/docker.git
13 строки
328 B
Go
13 строки
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
|
|
}
|