diff --git a/gns3server/compute/docker/__init__.py b/gns3server/compute/docker/__init__.py index 713c7d088..835e7cd12 100644 --- a/gns3server/compute/docker/__init__.py +++ b/gns3server/compute/docker/__init__.py @@ -67,7 +67,7 @@ class Docker(BaseManager): if not sys.platform.startswith("linux"): raise DockerError("Docker is supported only on Linux") try: - self._connector = aiohttp.connector.UnixConnector(self._server_url, conn_timeout=2) + self._connector = aiohttp.connector.UnixConnector(self._server_url, conn_timeout=2, limit=None) except (aiohttp.errors.ClientOSError, FileNotFoundError): raise DockerError("Can't connect to docker daemon") return self._connector