Comply to the new graph.Create() prototype

This commit is contained in:
Guillaume J. Charmes
2013-05-02 09:14:23 -07:00
parent 3edd14b8c2
commit b0459adc27
+1 -1
View File
@@ -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, "", ""); err != nil {
return err
} else {
if err := os.MkdirAll(path.Join(container.RootfsPath(), volPath), 0755); err != nil {