mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	Signed-off-by: Amit Krishnan <krish.amit@gmail.com> Signed-off-by: Alexander Morozov <lk4d4@docker.com>
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package daemon
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/docker/docker/api/types"
 | 
						|
	"github.com/docker/docker/api/types/backend"
 | 
						|
	"github.com/docker/docker/api/types/versions/v1p19"
 | 
						|
	"github.com/docker/docker/container"
 | 
						|
	"github.com/docker/docker/daemon/exec"
 | 
						|
)
 | 
						|
 | 
						|
// This sets platform-specific fields
 | 
						|
func setPlatformSpecificContainerFields(container *container.Container, contJSONBase *types.ContainerJSONBase) *types.ContainerJSONBase {
 | 
						|
	return contJSONBase
 | 
						|
}
 | 
						|
 | 
						|
// containerInspectPre120 get containers for pre 1.20 APIs.
 | 
						|
func (daemon *Daemon) containerInspectPre120(name string) (*v1p19.ContainerJSON, error) {
 | 
						|
	return &v1p19.ContainerJSON{}, nil
 | 
						|
}
 | 
						|
 | 
						|
func addMountPoints(container *container.Container) []types.MountPoint {
 | 
						|
	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
 | 
						|
}
 | 
						|
 | 
						|
func inspectExecProcessConfig(e *exec.Config) *backend.ExecProcessConfig {
 | 
						|
	return &backend.ExecProcessConfig{
 | 
						|
		Tty:        e.Tty,
 | 
						|
		Entrypoint: e.Entrypoint,
 | 
						|
		Arguments:  e.Args,
 | 
						|
	}
 | 
						|
}
 |