Allows people to create out-of-process graphdrivers that can be used with Docker. Extensions must be started before Docker otherwise Docker will fail to start. Signed-off-by: Brian Goff <cpuguy83@gmail.com> Upstream-commit: b78e4216a2a97704b664da34d526da1f7e080849 Component: engine
8 lines
147 B
Go
8 lines
147 B
Go
// +build !experimental
|
|
|
|
package graphdriver
|
|
|
|
func lookupPlugin(name, home string, opts []string) (Driver, error) {
|
|
return nil, ErrNotSupported
|
|
}
|