Add min and max to devcontainer.json forwardedPorts values

Fixes https://github.com/microsoft/vscode-remote-release/issues/2218
This commit is contained in:
Alex Ross 2020-02-04 12:43:57 +01:00
parent aeb205903a
commit 4945918d22

View file

@ -29,7 +29,9 @@
"type": "array",
"description": "Ports that are forwarded from the container to the local machine.",
"items": {
"type": "integer"
"type": "integer",
"maximum": 65535,
"minimum": 0
}
},
"remoteEnv": {