コード例 #1
0
func pluginInit(config *daemon.Config, remote libcontainerd.Remote, rs registry.Service) error {
	return plugin.Init(config.Root, config.ExecRoot, remote, rs)
}
コード例 #2
0
ファイル: daemon.go プロジェクト: datawolf/docker
func (daemon *Daemon) pluginInit(cfg *Config, remote libcontainerd.Remote) error {
	return plugin.Init(cfg.Root, daemon.PluginStore, remote, daemon.RegistryService, cfg.LiveRestoreEnabled, daemon.LogPluginEvent)
}
コード例 #3
0
ファイル: daemon_experimental.go プロジェクト: rlugojr/docker
func pluginInit(d *Daemon, cfg *Config, remote libcontainerd.Remote) error {
	return plugin.Init(cfg.Root, remote, d.RegistryService, cfg.LiveRestoreEnabled, d.LogPluginEvent)
}