mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
25 lines
568 B
Go
25 lines
568 B
Go
package config // import "github.com/docker/docker/cli/config"
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/docker/docker/pkg/homedir"
|
|
)
|
|
|
|
var (
|
|
configDir = os.Getenv("DOCKER_CONFIG")
|
|
configFileDir = ".docker"
|
|
)
|
|
|
|
// Dir 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 Dir() string {
|
|
return configDir
|
|
}
|
|
|
|
func init() {
|
|
if configDir == "" {
|
|
configDir = filepath.Join(homedir.Get(), configFileDir)
|
|
}
|
|
}
|