Explorar o código

Fix the graph.Create prototype

Guillaume J. Charmes %!s(int64=12) %!d(string=hai) anos
pai
achega
897cc573f0
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      container.go

+ 1 - 1
container.go

@@ -408,7 +408,7 @@ func (container *Container) Start() error {
 
 	// Create the requested volumes volumes
 	for volPath := range container.Config.Volumes {
-		if c, err := container.runtime.volumes.Create(nil, container, "", ""); err != nil {
+		if c, err := container.runtime.volumes.Create(nil, container, "", "", nil); err != nil {
 			return err
 		} else {
 			if err := os.MkdirAll(path.Join(container.RootfsPath(), volPath), 0755); err != nil {