|
@@ -81,12 +81,12 @@ func (daemon *Daemon) SystemInfo() (*types.Info, error) {
|
|
|
InitPath: initPath,
|
|
|
NCPU: runtime.NumCPU(),
|
|
|
MemTotal: meminfo.MemTotal,
|
|
|
- DockerRootDir: daemon.config().Root,
|
|
|
- Labels: daemon.config().Labels,
|
|
|
+ DockerRootDir: daemon.configStore.Root,
|
|
|
+ Labels: daemon.configStore.Labels,
|
|
|
ExperimentalBuild: utils.ExperimentalBuild(),
|
|
|
ServerVersion: dockerversion.Version,
|
|
|
- ClusterStore: daemon.config().ClusterStore,
|
|
|
- ClusterAdvertise: daemon.config().ClusterAdvertise,
|
|
|
+ ClusterStore: daemon.configStore.ClusterStore,
|
|
|
+ ClusterAdvertise: daemon.configStore.ClusterAdvertise,
|
|
|
HTTPProxy: getProxyEnv("http_proxy"),
|
|
|
HTTPSProxy: getProxyEnv("https_proxy"),
|
|
|
NoProxy: getProxyEnv("no_proxy"),
|