mirror of https://github.com/docker/docs.git
15 lines
369 B
Go
15 lines
369 B
Go
// +build linux,experimental
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/docker/docker/daemon"
|
|
"github.com/docker/docker/libcontainerd"
|
|
"github.com/docker/docker/plugin"
|
|
"github.com/docker/docker/registry"
|
|
)
|
|
|
|
func pluginInit(config *daemon.Config, remote libcontainerd.Remote, rs registry.Service) error {
|
|
return plugin.Init(config.Root, remote, rs, config.LiveRestore)
|
|
}
|