2015-07-16 17:14:58 -04:00
|
|
|
package daemon
|
|
|
|
|
2015-11-12 14:55:17 -05:00
|
|
|
import (
|
|
|
|
"github.com/docker/docker/container"
|
2016-01-04 19:05:26 -05:00
|
|
|
"github.com/docker/engine-api/types"
|
2015-11-12 14:55:17 -05:00
|
|
|
)
|
2015-07-16 17:14:58 -04:00
|
|
|
|
|
|
|
// This sets platform-specific fields
|
2015-11-12 14:55:17 -05:00
|
|
|
func setPlatformSpecificContainerFields(container *container.Container, contJSONBase *types.ContainerJSONBase) *types.ContainerJSONBase {
|
2015-07-16 17:14:58 -04:00
|
|
|
return contJSONBase
|
|
|
|
}
|
|
|
|
|
2015-11-12 14:55:17 -05:00
|
|
|
func addMountPoints(container *container.Container) []types.MountPoint {
|
2015-09-09 22:23:06 -04: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 17:14:58 -04:00
|
|
|
}
|
2015-08-24 13:57:39 -04:00
|
|
|
|
2015-11-24 12:55:45 -05: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 13:57:39 -04:00
|
|
|
}
|