mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
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>
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
|
|
}
|