2014-10-22 00:02:20 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-12-02 03:25:10 +01:00
|
|
|
"github.com/Sirupsen/logrus"
|
2014-10-22 00:02:20 +02:00
|
|
|
"github.com/docker/docker-registry/storagedriver/inmemory"
|
|
|
|
"github.com/docker/docker-registry/storagedriver/ipc"
|
|
|
|
)
|
|
|
|
|
2014-10-29 02:15:40 +01:00
|
|
|
// An out-of-process inmemory driver, intended to be run by ipc.NewDriverClient
|
|
|
|
// This exists primarily for example and testing purposes
|
2014-10-22 00:02:20 +02:00
|
|
|
func main() {
|
2014-12-02 03:25:10 +01:00
|
|
|
if err := ipc.StorageDriverServer(inmemory.New()); err != nil {
|
|
|
|
logrus.Fatalln(err)
|
|
|
|
}
|
2014-10-22 00:02:20 +02:00
|
|
|
}
|