1234567891011121314151617181920212223242526272829303132333435 |
- package daemon // import "github.com/docker/docker/daemon"
- import (
- "context"
- "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(ctx context.Context, v *system.Info, sysInfo *sysinfo.SysInfo, cfg *configStore) error {
- return nil
- }
- func (daemon *Daemon) fillPlatformVersion(ctx context.Context, v *types.Version, cfg *configStore) error {
- return nil
- }
- 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
- }
|