github.com/psychoss/docker@v1.9.0/daemon/inspect_windows.go (about)

     1  package daemon
     2  
     3  import "github.com/docker/docker/api/types"
     4  
     5  // This sets platform-specific fields
     6  func setPlatformSpecificContainerFields(container *Container, contJSONBase *types.ContainerJSONBase) *types.ContainerJSONBase {
     7  	return contJSONBase
     8  }
     9  
    10  func addMountPoints(container *Container) []types.MountPoint {
    11  	return nil
    12  }
    13  
    14  // ContainerInspectPre120 get containers for pre 1.20 APIs.
    15  func (daemon *Daemon) ContainerInspectPre120(name string) (*types.ContainerJSON, error) {
    16  	return daemon.ContainerInspect(name, false)
    17  }