Add event on container death

Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
Matthew Heon
2019-03-12 16:12:09 -04:00
parent 8b3f759800
commit 3b5805d521
5 changed files with 21 additions and 3 deletions

View File

@ -89,7 +89,6 @@ func (c *Container) Start(ctx context.Context, recursive bool) (err error) {
}
// Start the container
defer c.newContainerEvent(events.Start)
return c.start()
}
@ -127,7 +126,6 @@ func (c *Container) StartAndAttach(ctx context.Context, streams *AttachStreams,
}
close(attachChan)
}()
c.newContainerEvent(events.Start)
c.newContainerEvent(events.Attach)
return attachChan, nil
}