2020-04-24 18:04:32 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) 2020 Docker Inc.
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person
|
|
|
|
obtaining a copy of this software and associated documentation
|
|
|
|
files (the "Software"), to deal in the Software without
|
|
|
|
restriction, including without limitation the rights to use, copy,
|
|
|
|
modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
EXPRESS OR IMPLIED,
|
|
|
|
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
|
|
HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
DAMAGES OR OTHER LIABILITY,
|
|
|
|
WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
TORT OR OTHERWISE,
|
|
|
|
ARISING FROM, OUT OF OR IN CONNECTION WITH
|
|
|
|
THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2020-05-14 09:48:53 +02:00
|
|
|
package config
|
2020-04-08 16:21:02 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2020-05-14 09:48:53 +02:00
|
|
|
|
|
|
|
"github.com/spf13/pflag"
|
|
|
|
|
2020-06-06 22:22:30 +02:00
|
|
|
"github.com/docker/api/config"
|
2020-04-08 16:21:02 +02:00
|
|
|
)
|
|
|
|
|
2020-05-14 09:48:53 +02:00
|
|
|
// ConfigFlags are the global CLI flags
|
|
|
|
// nolint stutter
|
|
|
|
type ConfigFlags struct {
|
|
|
|
Config string
|
|
|
|
}
|
2020-04-08 16:21:02 +02:00
|
|
|
|
2020-05-14 09:48:53 +02:00
|
|
|
// AddConfigFlags adds persistent (global) flags
|
|
|
|
func (c *ConfigFlags) AddConfigFlags(flags *pflag.FlagSet) {
|
2020-06-06 22:22:30 +02:00
|
|
|
flags.StringVar(&c.Config, config.ConfigFlagName, confDir(), "Location of the client config files `DIRECTORY`")
|
2020-04-08 16:21:02 +02:00
|
|
|
}
|
|
|
|
|
2020-05-19 14:05:51 +02:00
|
|
|
func confDir() string {
|
|
|
|
env := os.Getenv("DOCKER_CONFIG")
|
|
|
|
if env != "" {
|
|
|
|
return env
|
|
|
|
}
|
2020-05-14 09:48:53 +02:00
|
|
|
home, _ := os.UserHomeDir()
|
2020-06-06 22:22:30 +02:00
|
|
|
return filepath.Join(home, config.ConfigFileDir)
|
2020-04-08 16:21:02 +02:00
|
|
|
}
|