monitor_linux.go 311 B

1234567891011
  1. package daemon
  2. import (
  3. "github.com/docker/docker/container"
  4. "github.com/docker/docker/libcontainerd"
  5. )
  6. // postRunProcessing perfoms any processing needed on the container after it has stopped.
  7. func (daemon *Daemon) postRunProcessing(_ *container.Container, _ libcontainerd.EventInfo) error {
  8. return nil
  9. }