We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6034c19 commit a849664Copy full SHA for a849664
1 file changed
defaults/defaults_windows.go
@@ -26,10 +26,10 @@ import (
26
var (
27
// DefaultRootDir is the default location used by containerd to store
28
// persistent data
29
- DefaultRootDir = filepath.Join(os.Getenv("programfiles"), "containerd", "root")
+ DefaultRootDir = filepath.Join(os.Getenv("ProgramData"), "containerd", "root")
30
// DefaultStateDir is the default location used by containerd to store
31
// transient data
32
- DefaultStateDir = filepath.Join(os.Getenv("programfiles"), "containerd", "state")
+ DefaultStateDir = filepath.Join(os.Getenv("ProgramData"), "containerd", "state")
33
)
34
35
const (
0 commit comments