mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-12-19 04:47:54 +00:00
parent
4b4053dc2b
commit
5a7f5d2950
@ -200,7 +200,10 @@ class DockerVM(BaseNode):
|
||||
"""
|
||||
:returns: Return the path that we need to map to local folders
|
||||
"""
|
||||
binds = ["{}:/gns3:ro".format(get_resource("compute/docker/resources"))]
|
||||
ressources = get_resource("compute/docker/resources")
|
||||
if not os.path.exists(ressources):
|
||||
raise DockerError("{} is missing can't start Docker containers".format(ressources))
|
||||
binds = ["{}:/gns3:ro".format(ressources)]
|
||||
|
||||
# We mount our own etc/network
|
||||
network_config = self._create_network_config()
|
||||
|
Loading…
Reference in New Issue
Block a user