discovery_windows.go 272 B

1234567891011
  1. package plugins // import "github.com/docker/docker/pkg/plugins"
  2. import (
  3. "os"
  4. "path/filepath"
  5. )
  6. // specsPaths is the Windows implementation of [SpecsPaths].
  7. func specsPaths() []string {
  8. return []string{filepath.Join(os.Getenv("programdata"), "docker", "plugins")}
  9. }