mirror of https://github.com/docker/docs.git
Ensure that the container's dir is remove from native driver on stop
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
This commit is contained in:
parent
93ed15075c
commit
5c67d2e634
|
@ -82,6 +82,8 @@ func (d *driver) Run(c *execdriver.Command, pipes *execdriver.Pipes, startCallba
|
||||||
if err := d.createContainerRoot(c.ID); err != nil {
|
if err := d.createContainerRoot(c.ID); err != nil {
|
||||||
return -1, err
|
return -1, err
|
||||||
}
|
}
|
||||||
|
defer d.removeContainerRoot(c.ID)
|
||||||
|
|
||||||
if c.Tty {
|
if c.Tty {
|
||||||
term = &dockerTtyTerm{
|
term = &dockerTtyTerm{
|
||||||
pipes: pipes,
|
pipes: pipes,
|
||||||
|
@ -186,6 +188,10 @@ func (d *driver) createContainerRoot(id string) error {
|
||||||
return os.MkdirAll(filepath.Join(d.root, id), 0655)
|
return os.MkdirAll(filepath.Join(d.root, id), 0655)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (d *driver) removeContainerRoot(id string) error {
|
||||||
|
return os.RemoveAll(filepath.Join(d.root, id))
|
||||||
|
}
|
||||||
|
|
||||||
func getEnv(key string, env []string) string {
|
func getEnv(key string, env []string) string {
|
||||||
for _, pair := range env {
|
for _, pair := range env {
|
||||||
parts := strings.Split(pair, "=")
|
parts := strings.Split(pair, "=")
|
||||||
|
|
Loading…
Reference in New Issue