mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
* Build: leave temporary containers untouched after a failure to help debugging
This commit is contained in:
parent
66f3a96983
commit
e0e385ac69
1 changed files with 0 additions and 6 deletions
|
@ -32,12 +32,6 @@ type builderClient struct {
|
|||
}
|
||||
|
||||
func (b *builderClient) clearTmp(containers, images map[string]struct{}) {
|
||||
for c := range containers {
|
||||
if _, _, err := b.cli.call("DELETE", "/containers/"+c, nil); err != nil {
|
||||
utils.Debugf("%s", err)
|
||||
}
|
||||
utils.Debugf("Removing container %s", c)
|
||||
}
|
||||
for i := range images {
|
||||
if _, _, err := b.cli.call("DELETE", "/images/"+i, nil); err != nil {
|
||||
utils.Debugf("%s", err)
|
||||
|
|
Loading…
Reference in a new issue