diff --git a/glue/main.go b/glue/main.go index e366d48..b626ff9 100644 --- a/glue/main.go +++ b/glue/main.go @@ -4,6 +4,7 @@ import ( "errors" "fmt" "log" + "strings" "time" "github.com/jinzhu/gorm" @@ -460,7 +461,7 @@ func (p *Processor) Rebuild() error { } err = container.Destroy() - if err != nil { + if err != nil && !strings.Contains(err.Error(), "no container found") { return err }