2015-10-08 15:57:30 +00:00
|
|
|
// +build !experimental
|
|
|
|
|
|
|
|
package daemon
|
|
|
|
|
2016-07-18 15:02:12 +00:00
|
|
|
import (
|
|
|
|
"github.com/docker/docker/libcontainerd"
|
|
|
|
"github.com/docker/engine-api/types/container"
|
|
|
|
)
|
2015-10-08 15:57:30 +00:00
|
|
|
|
2015-12-18 18:36:17 +00:00
|
|
|
func (daemon *Daemon) verifyExperimentalContainerSettings(hostConfig *container.HostConfig, config *container.Config) ([]string, error) {
|
2015-10-08 15:57:30 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
2016-07-01 18:36:11 +00:00
|
|
|
|
2016-07-18 15:02:12 +00:00
|
|
|
func pluginInit(d *Daemon, config *Config, remote libcontainerd.Remote) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-07-01 18:36:11 +00:00
|
|
|
func pluginShutdown() {
|
|
|
|
}
|