mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
863ab9ab13
Signed-off-by: Anusha Ragunathan <anusha@docker.com>
16 lines
351 B
Go
16 lines
351 B
Go
// +build experimental
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/plugin"
|
|
"github.com/docker/engine-api/types/container"
|
|
)
|
|
|
|
func (daemon *Daemon) verifyExperimentalContainerSettings(hostConfig *container.HostConfig, config *container.Config) ([]string, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func pluginShutdown() {
|
|
plugin.GetManager().Shutdown()
|
|
}
|