mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f9b9d5f584
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
20 lines
515 B
Go
20 lines
515 B
Go
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/pkg/sysinfo"
|
|
)
|
|
|
|
// fillPlatformInfo fills the platform related info.
|
|
func (daemon *Daemon) fillPlatformInfo(v *types.Info, sysInfo *sysinfo.SysInfo) {
|
|
}
|
|
|
|
func (daemon *Daemon) fillPlatformVersion(v *types.Version) {}
|
|
|
|
func fillDriverWarnings(v *types.Info) {
|
|
}
|
|
|
|
// Rootless returns true if daemon is running in rootless mode
|
|
func (daemon *Daemon) Rootless() bool {
|
|
return false
|
|
}
|