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
|
|
|
)
|
|
|
|
|
2016-01-12 17:18:57 -05:00
|
|
|
func (daemon *Daemon) prepareMountPoints(container *container.Container) error {
|
|
|
|
for _, config := range container.MountPoints {
|
|
|
|
if err := daemon.lazyInitializeVolume(container.ID, config); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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-09-23 16:29:14 -04:00
|
|
|
daemon.volumes.Dereference(m.Volume, container.ID)
|
2015-11-03 11:42:08 -05:00
|
|
|
if rm {
|
2016-01-21 21:57:53 -05:00
|
|
|
// Do not remove named mountpoints
|
|
|
|
// these are mountpoints specified like `docker run -v <name>:/foo`
|
|
|
|
if m.Named {
|
|
|
|
continue
|
|
|
|
}
|
2015-11-03 11:42:08 -05:00
|
|
|
err := daemon.volumes.Remove(m.Volume)
|
2015-09-23 16:29:14 -04:00
|
|
|
// Ignore volume in use errors because having this
|
2015-11-03 11:42:08 -05:00
|
|
|
// 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
|
|
|
|
}
|