Merge pull request #7338 from discordianfish/remove-ghost-state
Remove check for Ghost statepull/4420/head
commit
c97dec9d75
|
@ -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']['Ghost'] == False:
|
if i['State']['Running'] == True and i['State'].get('Ghost', False):
|
||||||
running.append(i)
|
running.append(i)
|
||||||
|
|
||||||
return running
|
return running
|
||||||
|
|
Loading…
Reference in New Issue