mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fixed a bug which caused Container.Start() to fail when the rootfs was already mounted.
This commit is contained in:
parent
e920cb9cd9
commit
fc19a00103
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ func (container *Container) generateLXCConfig() error {
|
|||
}
|
||||
|
||||
func (container *Container) Start() error {
|
||||
if err := container.Filesystem.Mount(); err != nil {
|
||||
if err := container.Filesystem.EnsureMounted(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue