diff --git a/daemon/daemon_unix.go b/daemon/daemon_unix.go index 82f993aab6..2d01b92cc0 100644 --- a/daemon/daemon_unix.go +++ b/daemon/daemon_unix.go @@ -110,7 +110,7 @@ func (daemon *Daemon) adaptContainerSettings(hostConfig *runconfig.HostConfig, a // hostconfig and config structures. func verifyPlatformContainerSettings(daemon *Daemon, hostConfig *runconfig.HostConfig, config *runconfig.Config) ([]string, error) { warnings := []string{} - sysInfo := sysinfo.New(false) + sysInfo := sysinfo.New(true) if hostConfig.LxcConf.Len() > 0 && !strings.Contains(daemon.ExecutionDriver().Name(), "lxc") { return warnings, fmt.Errorf("Cannot use --lxc-conf with execdriver: %s", daemon.ExecutionDriver().Name())