mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
36cf93fb0c
Plugin discovery on Windows is not possible using named pipes. However, it is possible using spec file (tcp based). This adds Windows specific paths for discovery. Fixes #23605 Signed-off-by: Anusha Ragunathan <anusha@docker.com>
8 lines
139 B
Go
8 lines
139 B
Go
package plugins
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
var specPaths = []string{filepath.Join(os.Getenv("programdata"), "docker", "plugins")}
|