2015-07-17 00:14:58 +03:00
|
|
|
package daemon
|
|
|
|
|
2015-09-11 01:01:18 +03:00
|
|
|
import (
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/context"
|
|
|
|
)
|
2015-07-17 00:14:58 +03: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 20:57:39 +03:00
|
|
|
|
|
|
|
// ContainerInspectPre120 get containers for pre 1.20 APIs.
|
2015-09-11 01:01:18 +03:00
|
|
|
func (daemon *Daemon) ContainerInspectPre120(ctx context.Context, name string) (*types.ContainerJSON, error) {
|
|
|
|
return daemon.ContainerInspect(ctx, name)
|
2015-08-24 20:57:39 +03:00
|
|
|
}
|