2014-07-31 17:12:12 -04:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
|
2014-10-24 13:12:35 -04:00
|
|
|
log "github.com/Sirupsen/logrus"
|
2014-10-24 18:11:48 -04:00
|
|
|
"github.com/docker/docker/engine"
|
2014-07-31 17:12:12 -04:00
|
|
|
)
|
|
|
|
|
2014-08-21 06:40:47 -04:00
|
|
|
func (daemon *Daemon) ContainerRm(job *engine.Job) engine.Status {
|
2014-07-31 17:12:12 -04:00
|
|
|
if len(job.Args) != 1 {
|
|
|
|
return job.Errorf("Not enough arguments. Usage: %s CONTAINER\n", job.Name)
|
|
|
|
}
|
|
|
|
name := job.Args[0]
|
|
|
|
removeVolume := job.GetenvBool("removeVolume")
|
|
|
|
removeLink := job.GetenvBool("removeLink")
|
2014-08-07 14:50:59 -04:00
|
|
|
forceRemove := job.GetenvBool("forceRemove")
|
2014-07-31 17:12:12 -04:00
|
|
|
container := daemon.Get(name)
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
if container == nil {
|
2014-10-02 18:52:37 -04:00
|
|
|
return job.Errorf("No such container: %s", name)
|
2014-08-28 10:18:08 -04:00
|
|
|
}
|
|
|
|
|
2014-07-31 17:12:12 -04:00
|
|
|
if removeLink {
|
|
|
|
name, err := GetFullContainerName(name)
|
|
|
|
if err != nil {
|
|
|
|
job.Error(err)
|
|
|
|
}
|
|
|
|
parent, n := path.Split(name)
|
|
|
|
if parent == "/" {
|
|
|
|
return job.Errorf("Conflict, cannot remove the default name of the container")
|
|
|
|
}
|
|
|
|
pe := daemon.ContainerGraph().Get(parent)
|
|
|
|
if pe == nil {
|
|
|
|
return job.Errorf("Cannot get parent %s for name %s", parent, name)
|
|
|
|
}
|
|
|
|
parentContainer := daemon.Get(pe.ID())
|
|
|
|
|
|
|
|
if parentContainer != nil {
|
|
|
|
parentContainer.DisableLink(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := daemon.ContainerGraph().Delete(name); err != nil {
|
|
|
|
return job.Error(err)
|
|
|
|
}
|
|
|
|
return engine.StatusOK
|
|
|
|
}
|
|
|
|
|
|
|
|
if container != nil {
|
2015-01-07 21:02:08 -05:00
|
|
|
// stop collection of stats for the container regardless
|
|
|
|
// if stats are currently getting collected.
|
|
|
|
daemon.statsCollector.stopCollection(container)
|
2014-08-31 11:20:35 -04:00
|
|
|
if container.IsRunning() {
|
2014-08-07 14:50:59 -04:00
|
|
|
if forceRemove {
|
2014-07-31 17:12:12 -04:00
|
|
|
if err := container.Kill(); err != nil {
|
|
|
|
return job.Errorf("Could not kill running container, cannot remove - %v", err)
|
|
|
|
}
|
|
|
|
} else {
|
2014-12-09 15:04:33 -05:00
|
|
|
return job.Errorf("Conflict, You cannot remove a running container. Stop the container before attempting removal or use -f")
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := daemon.Destroy(container); err != nil {
|
|
|
|
return job.Errorf("Cannot destroy container %s: %s", name, err)
|
|
|
|
}
|
2014-07-31 07:50:59 -04:00
|
|
|
container.LogEvent("destroy")
|
2014-07-31 17:12:12 -04:00
|
|
|
if removeVolume {
|
2014-08-28 10:18:08 -04:00
|
|
|
daemon.DeleteVolumes(container.VolumePaths())
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return engine.StatusOK
|
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
func (daemon *Daemon) DeleteVolumes(volumeIDs map[string]struct{}) {
|
|
|
|
for id := range volumeIDs {
|
|
|
|
if err := daemon.volumes.Delete(id); err != nil {
|
|
|
|
log.Infof("%s", err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-31 17:12:12 -04:00
|
|
|
// Destroy unregisters a container from the daemon and cleanly removes its contents from the filesystem.
|
|
|
|
// FIXME: rename to Rm for consistency with the CLI command
|
|
|
|
func (daemon *Daemon) Destroy(container *Container) error {
|
|
|
|
if container == nil {
|
|
|
|
return fmt.Errorf("The given container is <nil>")
|
|
|
|
}
|
|
|
|
|
|
|
|
element := daemon.containers.Get(container.ID)
|
|
|
|
if element == nil {
|
|
|
|
return fmt.Errorf("Container %v not found - maybe it was already destroyed?", container.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := container.Stop(3); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deregister the container before removing its directory, to avoid race conditions
|
|
|
|
daemon.idIndex.Delete(container.ID)
|
|
|
|
daemon.containers.Delete(container.ID)
|
2014-08-28 10:18:08 -04:00
|
|
|
container.derefVolumes()
|
2014-07-31 17:12:12 -04:00
|
|
|
if _, err := daemon.containerGraph.Purge(container.ID); err != nil {
|
2014-07-24 16:37:44 -04:00
|
|
|
log.Debugf("Unable to remove container from link graph: %s", err)
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := daemon.driver.Remove(container.ID); err != nil {
|
|
|
|
return fmt.Errorf("Driver %s failed to remove root filesystem %s: %s", daemon.driver, container.ID, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
initID := fmt.Sprintf("%s-init", container.ID)
|
|
|
|
if err := daemon.driver.Remove(initID); err != nil {
|
|
|
|
return fmt.Errorf("Driver %s failed to remove init filesystem %s: %s", daemon.driver, initID, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := os.RemoveAll(container.root); err != nil {
|
|
|
|
return fmt.Errorf("Unable to remove filesystem for %v: %v", container.ID, err)
|
|
|
|
}
|
|
|
|
|
2014-09-10 03:34:38 -04:00
|
|
|
if err := daemon.execDriver.Clean(container.ID); err != nil {
|
|
|
|
return fmt.Errorf("Unable to remove execdriver data for %s: %s", container.ID, err)
|
|
|
|
}
|
|
|
|
|
2014-07-31 17:12:12 -04:00
|
|
|
selinuxFreeLxcContexts(container.ProcessLabel)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|