mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Do not pass container information when creating a volume
This commit is contained in:
parent
78ef0bd998
commit
ddb27268c9
1 changed files with 5 additions and 1 deletions
|
@ -804,7 +804,11 @@ func (container *Container) Start() (err error) {
|
|||
}
|
||||
// Otherwise create an directory in $ROOT/volumes/ and use that
|
||||
} else {
|
||||
c, err := container.runtime.volumes.Create(nil, container, "", "", nil)
|
||||
|
||||
// Do not pass a container as the parameter for the volume creation.
|
||||
// The graph driver using the container's information ( Image ) to
|
||||
// create the parent.
|
||||
c, err := container.runtime.volumes.Create(nil, nil, "", "", nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue