2015-11-03 16:42:08 +00:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
2015-11-12 19:55:17 +00:00
|
|
|
"github.com/docker/docker/container"
|
2015-11-03 16:42:08 +00:00
|
|
|
derr "github.com/docker/docker/errors"
|
2015-10-20 00:41:22 +00:00
|
|
|
volumestore "github.com/docker/docker/volume/store"
|
2015-11-03 16:42:08 +00:00
|
|
|
)
|
|
|
|
|
2016-01-12 22:18:57 +00: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 19:55:17 +00:00
|
|
|
func (daemon *Daemon) removeMountPoints(container *container.Container, rm bool) error {
|
2015-11-03 16:42:08 +00:00
|
|
|
var rmErrors []string
|
|
|
|
for _, m := range container.MountPoints {
|
|
|
|
if m.Volume == nil {
|
|
|
|
continue
|
|
|
|
}
|
2015-09-23 20:29:14 +00:00
|
|
|
daemon.volumes.Dereference(m.Volume, container.ID)
|
2015-11-03 16:42:08 +00:00
|
|
|
if rm {
|
2016-01-22 02:57:53 +00:00
|
|
|
// Do not remove named mountpoints
|
|
|
|
// these are mountpoints specified like `docker run -v <name>:/foo`
|
|
|
|
if m.Named {
|
|
|
|
continue
|
|
|
|
}
|
2015-11-03 16:42:08 +00:00
|
|
|
err := daemon.volumes.Remove(m.Volume)
|
2015-09-23 20:29:14 +00:00
|
|
|
// Ignore volume in use errors because having this
|
2015-11-03 16:42:08 +00: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-20 00:41:22 +00:00
|
|
|
if err != nil && !volumestore.IsInUse(err) {
|
2015-11-03 16:42:08 +00:00
|
|
|
rmErrors = append(rmErrors, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(rmErrors) > 0 {
|
|
|
|
return derr.ErrorCodeRemovingVolume.WithArgs(strings.Join(rmErrors, "\n"))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|