Fix restart with stopped containers.
Fixes #1814 Signed-off-by: Stéphane Seguin <stephseguin93@gmail.com>
This commit is contained in:
parent
9f6a5a964a
commit
61f91ebff7
2 changed files with 10 additions and 1 deletions
|
|
@ -185,7 +185,7 @@ class Service(object):
|
|||
c.kill(**options)
|
||||
|
||||
def restart(self, **options):
|
||||
for c in self.containers():
|
||||
for c in self.containers(stopped=True):
|
||||
log.info("Restarting %s" % c.name)
|
||||
c.restart(**options)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue