27 lines
587 B
Go
27 lines
587 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"os"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
|
"github.com/docker/docker-registry/storagedriver/filesystem"
|
|
"github.com/docker/docker-registry/storagedriver/ipc"
|
|
)
|
|
|
|
// An out-of-process filesystem driver, intended to be run by ipc.NewDriverClient
|
|
func main() {
|
|
parametersBytes := []byte(os.Args[1])
|
|
var parameters map[string]string
|
|
err := json.Unmarshal(parametersBytes, ¶meters)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
if err := ipc.StorageDriverServer(filesystem.FromParameters(parameters)); err != nil {
|
|
logrus.Fatalln(err)
|
|
}
|
|
}
|