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