mirror of
https://github.com/containers/podman.git
synced 2025-06-19 08:09:12 +08:00
Add podman container cleanup
to CLI
When we run containers in detach mode, nothing cleans up the network stack or the mount points. This patch will tell conmon to execute the cleanup code when the container exits. It can also be called to attempt to cleanup previously running containers. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #942 Approved by: mheon
This commit is contained in:

committed by
Atomic Bot

parent
41bd607c12
commit
7fc1a329bd
@ -316,8 +316,25 @@ func (c *CreateConfig) GetTmpfsMounts() []spec.Mount {
|
||||
return m
|
||||
}
|
||||
|
||||
func createExitCommand(runtime *libpod.Runtime) []string {
|
||||
config := runtime.GetConfig()
|
||||
|
||||
cmd, _ := os.Executable()
|
||||
command := []string{cmd,
|
||||
"--root", config.StorageConfig.GraphRoot,
|
||||
"--runroot", config.StorageConfig.RunRoot,
|
||||
"--log-level", logrus.GetLevel().String(),
|
||||
"--cgroup-manager", config.CgroupManager,
|
||||
"--tmpdir", config.TmpDir,
|
||||
}
|
||||
if config.StorageConfig.GraphDriverName != "" {
|
||||
command = append(command, []string{"--storage-driver", config.StorageConfig.GraphDriverName}...)
|
||||
}
|
||||
return append(command, []string{"container", "cleanup"}...)
|
||||
}
|
||||
|
||||
// GetContainerCreateOptions takes a CreateConfig and returns a slice of CtrCreateOptions
|
||||
func (c *CreateConfig) GetContainerCreateOptions() ([]libpod.CtrCreateOption, error) {
|
||||
func (c *CreateConfig) GetContainerCreateOptions(runtime *libpod.Runtime) ([]libpod.CtrCreateOption, error) {
|
||||
var options []libpod.CtrCreateOption
|
||||
var portBindings []ocicni.PortMapping
|
||||
var err error
|
||||
@ -434,6 +451,9 @@ func (c *CreateConfig) GetContainerCreateOptions() ([]libpod.CtrCreateOption, er
|
||||
if c.CgroupParent != "" {
|
||||
options = append(options, libpod.WithCgroupParent(c.CgroupParent))
|
||||
}
|
||||
if c.Detach {
|
||||
options = append(options, libpod.WithExitCommand(createExitCommand(runtime)))
|
||||
}
|
||||
|
||||
return options, nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user