2015-07-16 17:14:58 -04:00
|
|
|
package daemon
|
|
|
|
|
2015-09-29 13:51:40 -04:00
|
|
|
import "github.com/docker/docker/api/types"
|
2015-07-16 17:14:58 -04:00
|
|
|
|
|
|
|
// This sets platform-specific fields
|
|
|
|
func setPlatformSpecificContainerFields(container *Container, contJSONBase *types.ContainerJSONBase) *types.ContainerJSONBase {
|
|
|
|
return contJSONBase
|
|
|
|
}
|
|
|
|
|
|
|
|
func addMountPoints(container *Container) []types.MountPoint {
|
|
|
|
return nil
|
|
|
|
}
|
2015-08-24 13:57:39 -04:00
|
|
|
|
|
|
|
// ContainerInspectPre120 get containers for pre 1.20 APIs.
|
2015-09-29 13:51:40 -04:00
|
|
|
func (daemon *Daemon) ContainerInspectPre120(name string) (*types.ContainerJSON, error) {
|
2015-09-25 08:49:02 -04:00
|
|
|
return daemon.ContainerInspect(name, false)
|
2015-08-24 13:57:39 -04:00
|
|
|
}
|