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

Fix a crash when reloading a project with Docker

This commit is contained in:
Julien Duponchelle 2016-07-22 18:02:40 +02:00
parent 9bdc0b78eb
commit 786f9c87c9
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -82,8 +82,14 @@ DOCKER_CREATE_SCHEMA = {
"description": "Docker environment variables",
"type": ["string", "null"],
"minLength": 0,
},
"container_id": {
"description": "Docker container ID Read only",
"type": "string",
"minLength": 12,
"maxLength": 64,
"pattern": "^[a-f0-9]+$"
}
},
"additionalProperties": False,
"required": ["name", "image"]