WindowsDefaultDaemonRootDir returns default data directory of docker daemon on Windows.
()
| 20 | |
| 21 | // WindowsDefaultDaemonRootDir returns default data directory of docker daemon on Windows. |
| 22 | func WindowsDefaultDaemonRootDir() string { |
| 23 | return filepath.Join(os.Getenv("programdata"), "docker") |
| 24 | } |
| 25 | |
| 26 | func createPluginSpecDirWindows(name, address, daemonRoot string) (string, error) { |
| 27 | _, err := os.Stat(daemonRoot) |
nothing calls this directly
no test coverage detected
searching dependent graphs…