Commit 7c3dbd3c by James Cammarata

Merge pull request #7350 from discordianfish/remove-ghost-state

Fix: Remove check for Ghost state
parents c97dec9d ea71c0c3
...@@ -524,7 +524,7 @@ class DockerManager: ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment