bc42f53ec8
Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
31 lines
653 B
Go
31 lines
653 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"os"
|
|
|
|
log "github.com/Sirupsen/logrus"
|
|
"github.com/docker/distribution/storagedriver/azure"
|
|
"github.com/docker/distribution/storagedriver/ipc"
|
|
)
|
|
|
|
// An out-of-process Azure Storage driver, intended to be run by ipc.NewDriverClient
|
|
func main() {
|
|
parametersBytes := []byte(os.Args[1])
|
|
var parameters map[string]interface{}
|
|
err := json.Unmarshal(parametersBytes, ¶meters)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
driver, err := azure.FromParameters(parameters)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
if err := ipc.StorageDriverServer(driver); err != nil {
|
|
log.Fatalln("driver error:", err)
|
|
}
|
|
}
|