feature/112: implement include-stopped

This commit is contained in:
Simon Aronsson 2019-04-28 15:40:31 +02:00
parent 3c2e184823
commit 1cfa453f40
6 changed files with 79 additions and 23 deletions

View file

@ -89,7 +89,10 @@ func before(c *cli.Context) error {
return err
}
client = container.NewClient(!c.GlobalBool("no-pull"))
client = container.NewClient(
!c.GlobalBool("no-pull"),
c.GlobalBool("include-stopped"),
)
notifier = notifications.NewNotifier(c)
return nil