ca0084fad1
Custom storage drivers can register a factory to create the driver by name, similar to the database/sql package's Register and Open factory.Create returns an in-process driver if registered or an IPC driver if one can be found, erroring otherwise This standardizes parameter passing for creation of storage drivers Also adds documentation for storagedriver package and children
12 lines
336 B
Go
12 lines
336 B
Go
package main
|
|
|
|
import (
|
|
"github.com/docker/docker-registry/storagedriver/inmemory"
|
|
"github.com/docker/docker-registry/storagedriver/ipc"
|
|
)
|
|
|
|
// An out-of-process inmemory driver, intended to be run by ipc.NewDriverClient
|
|
// This exists primarily for example and testing purposes
|
|
func main() {
|
|
ipc.StorageDriverServer(inmemory.New())
|
|
}
|