Fix: Remove check for Ghost state
This fixed the just committed change handling non existent Ghost state.
This commit is contained in:
parent
b5ba1c4527
commit
ac14a016c4
1 changed files with 1 additions and 1 deletions
|
@ -524,7 +524,7 @@ class DockerManager:
|
||||||
def get_running_containers(self):
|
def get_running_containers(self):
|
||||||
running = []
|
running = []
|
||||||
for i in self.get_deployed_containers():
|
for i in self.get_deployed_containers():
|
||||||
if i['State']['Running'] == True and i['State'].get('Ghost', False):
|
if i['State']['Running'] == True and i['State'].get('Ghost', False) == False:
|
||||||
running.append(i)
|
running.append(i)
|
||||||
|
|
||||||
return running
|
return running
|
||||||
|
|
Loading…
Reference in a new issue