mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
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
|
||
|
}
|