mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
934328d8ea
Signed-off-by: Amit Krishnan <krish.amit@gmail.com> Signed-off-by: Alexander Morozov <lk4d4@docker.com>
47 lines
1.1 KiB
Go
47 lines
1.1 KiB
Go
package daemon
|
|
|
|
import (
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
var (
|
|
defaultPidFile = "/system/volatile/docker/docker.pid"
|
|
defaultGraph = "/var/lib/docker"
|
|
defaultExec = "zones"
|
|
)
|
|
|
|
// Config defines the configuration of a docker daemon.
|
|
// These are the configuration settings that you pass
|
|
// to the docker daemon when you launch it with say: `docker -d -e lxc`
|
|
type Config struct {
|
|
CommonConfig
|
|
|
|
// These fields are common to all unix platforms.
|
|
CommonUnixConfig
|
|
}
|
|
|
|
// bridgeConfig stores all the bridge driver specific
|
|
// configuration.
|
|
type bridgeConfig struct {
|
|
commonBridgeConfig
|
|
|
|
// Fields below here are platform specific.
|
|
commonUnixBridgeConfig
|
|
}
|
|
|
|
// InstallFlags adds command-line options to the top-level flag parser for
|
|
// the current process.
|
|
func (config *Config) InstallFlags(flags *pflag.FlagSet) {
|
|
// First handle install flags which are consistent cross-platform
|
|
config.InstallCommonFlags(flags)
|
|
|
|
// Then install flags common to unix platforms
|
|
config.InstallCommonUnixFlags(flags)
|
|
|
|
// Then platform-specific install flags
|
|
config.attachExperimentalFlags(flags)
|
|
}
|
|
|
|
func (config *Config) isSwarmCompatible() error {
|
|
return nil
|
|
}
|