123456789101112131415161718192021222324252627282930 |
- package daemon // import "github.com/docker/docker/daemon"
- import (
- "github.com/docker/docker/api/types"
- "github.com/docker/docker/api/types/system"
- "github.com/docker/docker/daemon/config"
- "github.com/docker/docker/pkg/sysinfo"
- )
- // fillPlatformInfo fills the platform related info.
- func (daemon *Daemon) fillPlatformInfo(v *system.Info, sysInfo *sysinfo.SysInfo, cfg *configStore) {
- }
- func (daemon *Daemon) fillPlatformVersion(v *types.Version, cfg *configStore) {}
- func fillDriverWarnings(v *system.Info) {
- }
- func cgroupNamespacesEnabled(sysInfo *sysinfo.SysInfo, cfg *config.Config) bool {
- return false
- }
- // Rootless returns true if daemon is running in rootless mode
- func Rootless(*config.Config) bool {
- return false
- }
- func noNewPrivileges(*config.Config) bool {
- return false
- }
|