From 6aa6d96ba0f729357355ea6142d182f8675fa03e Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Wed, 26 Jul 2017 10:52:43 +0200 Subject: [PATCH] Fix support of docker appliance with a usage Fix #1144 --- gns3server/schemas/docker.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gns3server/schemas/docker.py b/gns3server/schemas/docker.py index bd0099a1..d9934d74 100644 --- a/gns3server/schemas/docker.py +++ b/gns3server/schemas/docker.py @@ -62,6 +62,10 @@ DOCKER_CREATE_SCHEMA = { "maximum": 65535, "type": ["integer", "null"] }, + "usage": { + "description": "How to use the qemu VM", + "type": "string", + }, "start_command": { "description": "Docker CMD entry", "type": ["string", "null"], @@ -166,6 +170,10 @@ DOCKER_OBJECT_SCHEMA = { "minimum": 0, "maximum": 99, }, + "usage": { + "description": "How to use the qemu VM", + "type": "string", + }, "start_command": { "description": "Docker CMD entry", "type": ["string", "null"],