Skip to content

Commit

Permalink
Allow empty start command
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-duponchelle committed Dec 17, 2015
1 parent f03ebb2 commit 49ba828
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gns3server/schemas/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"start_command": {
"description": "Docker CMD entry",
"type": "string",
"type": ["string", "null"],
"minLength": 0,
},
"image": {
Expand Down Expand Up @@ -78,7 +78,7 @@
},
"start_command": {
"description": "Docker CMD entry",
"type": "string",
"type": ["string", "null"],
"minLength": 0,
}
},
Expand Down Expand Up @@ -135,7 +135,7 @@
},
"start_command": {
"description": "Docker CMD entry",
"type": "string",
"type": ["string", "null"],
"minLength": 0,
}
},
Expand Down

0 comments on commit 49ba828

Please sign in to comment.