Fix freeze when container is started/stopped multiple times

This commit is contained in:
Vahe Mkrtchyan 2020-07-23 15:23:19 +04:00
parent 4741b276e4
commit 4a0e80ffdf
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ func (c *Docker) Logs() LogCollector {
// Stop collector
func (c *Docker) Stop() {
c.running = false
c.done <- true
}