mirror of
https://github.com/docker/cli.git
synced 2026-01-06 05:41:44 +03:00
12 lines
229 B
Go
12 lines
229 B
Go
package manager
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
var defaultSystemPluginDirs = []string{
|
|
filepath.Join(os.Getenv("ProgramData"), "Docker", "cli-plugins"),
|
|
filepath.Join(os.Getenv("ProgramFiles"), "Docker", "cli-plugins"),
|
|
}
|