mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b78e4216a2
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>
7 lines
147 B
Go
7 lines
147 B
Go
// +build !experimental
|
|
|
|
package graphdriver
|
|
|
|
func lookupPlugin(name, home string, opts []string) (Driver, error) {
|
|
return nil, ErrNotSupported
|
|
}
|