12345678910111213141516171819202122232425262728293031 |
- //go:build !windows
- package plugins // import "github.com/docker/docker/pkg/plugins"
- import (
- "path/filepath"
- "github.com/docker/docker/pkg/homedir"
- "github.com/docker/docker/pkg/rootless"
- )
- func rootlessConfigPluginsPath() string {
- if configHome, err := homedir.GetConfigHome(); err != nil {
- return filepath.Join(configHome, "docker/plugins")
- }
- return "/etc/docker/plugins"
- }
- func rootlessLibPluginsPath() string {
- if libHome, err := homedir.GetLibHome(); err == nil {
- return filepath.Join(libHome, "docker/plugins")
- }
- return "/usr/lib/docker/plugins"
- }
- // specsPaths is the non-Windows implementation of [SpecsPaths].
- func specsPaths() []string {
- if rootless.RunningWithRootlessKit() {
- return []string{rootlessConfigPluginsPath(), rootlessLibPluginsPath()}
- }
- return []string{"/etc/docker/plugins", "/usr/lib/docker/plugins"}
- }
|