2015-07-16 21:14:58 +00:00
|
|
|
package daemon
|
|
|
|
|
2015-09-29 17:51:40 +00:00
|
|
|
import "github.com/docker/docker/api/types"
|
2015-07-16 21:14:58 +00:00
|
|
|
|
|
|
|
// This sets platform-specific fields
|
|
|
|
func setPlatformSpecificContainerFields(container *Container, contJSONBase *types.ContainerJSONBase) *types.ContainerJSONBase {
|
|
|
|
return contJSONBase
|
|
|
|
}
|
|
|
|
|
|
|
|
func addMountPoints(container *Container) []types.MountPoint {
|
2015-09-10 02:23:06 +00:00
|
|
|
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
|
2015-07-16 21:14:58 +00:00
|
|
|
}
|
2015-08-24 17:57:39 +00:00
|
|
|
|
2015-11-24 17:55:45 +00:00
|
|
|
// containerInspectPre120 get containers for pre 1.20 APIs.
|
|
|
|
func (daemon *Daemon) containerInspectPre120(name string) (*types.ContainerJSON, error) {
|
|
|
|
return daemon.containerInspectCurrent(name, false)
|
2015-08-24 17:57:39 +00:00
|
|
|
}
|