github.com/docker/docker@v299999999.0.0-20200612211812-aaf470eca7b5+incompatible/daemon/info_windows.go (about)

     1  package daemon // import "github.com/docker/docker/daemon"
     2  
     3  import (
     4  	"github.com/docker/docker/api/types"
     5  	"github.com/docker/docker/pkg/sysinfo"
     6  )
     7  
     8  // fillPlatformInfo fills the platform related info.
     9  func (daemon *Daemon) fillPlatformInfo(v *types.Info, sysInfo *sysinfo.SysInfo) {
    10  }
    11  
    12  func (daemon *Daemon) fillPlatformVersion(v *types.Version) {}
    13  
    14  func fillDriverWarnings(v *types.Info) {
    15  }
    16  
    17  func (daemon *Daemon) cgroupNamespacesEnabled(sysInfo *sysinfo.SysInfo) bool {
    18  	return false
    19  }
    20  
    21  // Rootless returns true if daemon is running in rootless mode
    22  func (daemon *Daemon) Rootless() bool {
    23  	return false
    24  }