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>
| ... | ... |
@@ -16,7 +16,6 @@ var ( |
| 16 | 16 |
// ErrNotFound plugin not found |
| 17 | 17 |
ErrNotFound = errors.New("plugin not found")
|
| 18 | 18 |
socketsPath = "/run/docker/plugins" |
| 19 |
- specsPaths = []string{"/etc/docker/plugins", "/usr/lib/docker/plugins"}
|
|
| 20 | 19 |
) |
| 21 | 20 |
|
| 22 | 21 |
// localRegistry defines a registry that is local (using unix socket). |