2015-11-03 11:42:08 -05:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
2015-11-12 14:55:17 -05:00
|
|
|
"github.com/docker/docker/container"
|
2015-11-03 11:42:08 -05:00
|
|
|
derr "github.com/docker/docker/errors"
|
2015-10-19 20:41:22 -04:00
|
|
|
volumestore "github.com/docker/docker/volume/store"
|
2015-11-03 11:42:08 -05:00
|
|
|
)
|
|
|
|
|
2015-11-12 14:55:17 -05:00
|
|
|
func (daemon *Daemon) prepareMountPoints(container *container.Container) error {
|
2015-11-03 11:42:08 -05:00
|
|
|
for _, config := range container.MountPoints {
|
|
|
|
if len(config.Driver) > 0 {
|
|
|
|
v, err := daemon.createVolume(config.Name, config.Driver, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
config.Volume = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-11-12 14:55:17 -05:00
|
|
|
func (daemon *Daemon) removeMountPoints(container *container.Container, rm bool) error {
|
2015-11-03 11:42:08 -05:00
|
|
|
var rmErrors []string
|
|
|
|
for _, m := range container.MountPoints {
|
|
|
|
if m.Volume == nil {
|
|
|
|
continue
|
|
|
|
}
|
2015-11-03 14:25:22 -05:00
|
|
|
daemon.volumes.Decrement(m.Volume)
|
2015-11-03 11:42:08 -05:00
|
|
|
if rm {
|
|
|
|
err := daemon.volumes.Remove(m.Volume)
|
|
|
|
// ErrVolumeInUse is ignored because having this
|
|
|
|
// volume being referenced by other container is
|
|
|
|
// not an error, but an implementation detail.
|
|
|
|
// This prevents docker from logging "ERROR: Volume in use"
|
|
|
|
// where there is another container using the volume.
|
2015-10-19 20:41:22 -04:00
|
|
|
if err != nil && !volumestore.IsInUse(err) {
|
2015-11-03 11:42:08 -05:00
|
|
|
rmErrors = append(rmErrors, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(rmErrors) > 0 {
|
|
|
|
return derr.ErrorCodeRemovingVolume.WithArgs(strings.Join(rmErrors, "\n"))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|