1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-18 06:18:08 +00:00

Keep DOCKER_MINIMUM_API_VERSION and DOCKER_MINIMUM_VERSION consistent

This commit is contained in:
Julien Duponchelle 2017-05-23 11:00:15 +02:00
parent 8b7209ea78
commit 2a8911d19e
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -33,8 +33,9 @@ from gns3server.compute.docker.docker_error import DockerError, DockerHttp304Err
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
# Be carefull to keep it consistent
DOCKER_MINIMUM_API_VERSION = "1.25" DOCKER_MINIMUM_API_VERSION = "1.25"
DOCKER_MINIMUM_VERSION = "1.9" DOCKER_MINIMUM_VERSION = "1.13"
class Docker(BaseManager): class Docker(BaseManager):