mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a7e686a779
Signed-off-by: John Howard <jhoward@microsoft.com>
27 lines
840 B
Go
27 lines
840 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 {
|
|
mountPoints := make([]types.MountPoint, 0, len(container.MountPoints))
|
|
for _, m := range container.MountPoints {
|
|
mountPoints = append(mountPoints, types.MountPoint{
|
|
Name: m.Name,
|
|
Source: m.Path(),
|
|
Destination: m.Destination,
|
|
Driver: m.Driver,
|
|
RW: m.RW,
|
|
})
|
|
}
|
|
return mountPoints
|
|
}
|
|
|
|
// ContainerInspectPre120 get containers for pre 1.20 APIs.
|
|
func (daemon *Daemon) ContainerInspectPre120(name string) (*types.ContainerJSON, error) {
|
|
return daemon.ContainerInspect(name, false)
|
|
}
|