2015-07-16 21:14:58 +00:00
|
|
|
package daemon
|
|
|
|
|
2015-11-12 19:55:17 +00:00
|
|
|
import (
|
2016-02-10 20:16:59 +00:00
|
|
|
"github.com/docker/docker/api/types/backend"
|
2015-11-12 19:55:17 +00:00
|
|
|
"github.com/docker/docker/container"
|
2016-02-10 20:16:59 +00:00
|
|
|
"github.com/docker/docker/daemon/exec"
|
2016-01-05 00:05:26 +00:00
|
|
|
"github.com/docker/engine-api/types"
|
2015-11-12 19:55:17 +00:00
|
|
|
)
|
2015-07-16 21:14:58 +00:00
|
|
|
|
|
|
|
// This sets platform-specific fields
|
2015-11-12 19:55:17 +00:00
|
|
|
func setPlatformSpecificContainerFields(container *container.Container, contJSONBase *types.ContainerJSONBase) *types.ContainerJSONBase {
|
2015-07-16 21:14:58 +00:00
|
|
|
return contJSONBase
|
|
|
|
}
|
|
|
|
|
2015-11-12 19:55:17 +00:00
|
|
|
func addMountPoints(container *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) {
|
2016-06-14 02:52:49 +00:00
|
|
|
return daemon.ContainerInspectCurrent(name, false)
|
2015-08-24 17:57:39 +00:00
|
|
|
}
|
2016-02-10 20:16:59 +00:00
|
|
|
|
|
|
|
func inspectExecProcessConfig(e *exec.Config) *backend.ExecProcessConfig {
|
|
|
|
return &backend.ExecProcessConfig{
|
2016-03-18 18:53:27 +00:00
|
|
|
Tty: e.Tty,
|
|
|
|
Entrypoint: e.Entrypoint,
|
|
|
|
Arguments: e.Args,
|
2016-02-10 20:16:59 +00:00
|
|
|
}
|
|
|
|
}
|