This reverts commit ef5e5fa03f0603f48678bfd7039c5b8121d98df1. Running new plugins under a new pgid isn't a viable solution due to it causing issues with plugin processes attempting to read from the TTY (see: https://github.com/moby/moby/issues/47073). Signed-off-by: Laura Brehm <laurabrehm@hey.com>
9 lines
226 B
Go
9 lines
226 B
Go
//go:build !windows
|
|
|
|
package manager
|
|
|
|
var defaultSystemPluginDirs = []string{
|
|
"/usr/local/lib/docker/cli-plugins", "/usr/local/libexec/docker/cli-plugins",
|
|
"/usr/lib/docker/cli-plugins", "/usr/libexec/docker/cli-plugins",
|
|
}
|