This makes integration not depend anymore of `cli` and thus not require `cobra` and other packages to compile. Signed-off-by: Vincent Demeester <vincent@sbr.pm> Upstream-commit: 71d60ec0eb7eeddc73d2cf63748ab7debe3f06af Component: engine
26 lines
545 B
Go
26 lines
545 B
Go
package flags
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/docker/docker/pkg/homedir"
|
|
)
|
|
|
|
var (
|
|
configDir = os.Getenv("DOCKER_CONFIG")
|
|
configFileDir = ".docker"
|
|
)
|
|
|
|
// ConfigurationDir returns the path to the configuration directory as specified by the DOCKER_CONFIG environment variable.
|
|
// TODO: this was copied from cli/config/configfile and should be removed once cmd/dockerd moves
|
|
func ConfigurationDir() string {
|
|
return configDir
|
|
}
|
|
|
|
func init() {
|
|
if configDir == "" {
|
|
configDir = filepath.Join(homedir.Get(), configFileDir)
|
|
}
|
|
}
|