mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-17 14:58:13 +00:00
Fix start all create error if a docker container is already running
Fix #839
This commit is contained in:
@ -344,6 +344,8 @@ class DockerVM(BaseNode):
|
||||
state = yield from self._get_container_state()
|
||||
if state == "paused":
|
||||
yield from self.unpause()
|
||||
elif state == "running":
|
||||
return
|
||||
else:
|
||||
yield from self._clean_servers()
|
||||
|
||||
|
Reference in New Issue
Block a user