github.com/torfuzx/docker@v1.8.1/docker/daemon_windows.go (about)

     1  // +build daemon
     2  
     3  package main
     4  
     5  import (
     6  	apiserver "github.com/docker/docker/api/server"
     7  	"github.com/docker/docker/daemon"
     8  )
     9  
    10  func setPlatformServerConfig(serverConfig *apiserver.ServerConfig, daemonCfg *daemon.Config) *apiserver.ServerConfig {
    11  	return serverConfig
    12  }
    13  
    14  // currentUserIsOwner checks whether the current user is the owner of the given
    15  // file.
    16  func currentUserIsOwner(f string) bool {
    17  	return false
    18  }
    19  
    20  // setDefaultUmask doesn't do anything on windows
    21  func setDefaultUmask() error {
    22  	return nil
    23  }