mirror of https://github.com/docker/compose.git
Fix type for `tty` & `stdin_open`
Signed-off-by: Christophe Labouisse <christophe@labouisse.org>
This commit is contained in:
parent
9ce30e75df
commit
e80f0bdf86
|
@ -111,8 +111,8 @@
|
||||||
"read_only": {"type": "boolean"},
|
"read_only": {"type": "boolean"},
|
||||||
"restart": {"type": "string"},
|
"restart": {"type": "string"},
|
||||||
"security_opt": {"type": "array", "items": {"type": "string"}, "uniqueItems": true},
|
"security_opt": {"type": "array", "items": {"type": "string"}, "uniqueItems": true},
|
||||||
"stdin_open": {"type": "string"},
|
"stdin_open": {"type": "boolean"},
|
||||||
"tty": {"type": "string"},
|
"tty": {"type": "boolean"},
|
||||||
"user": {"type": "string"},
|
"user": {"type": "string"},
|
||||||
"volumes": {"type": "array", "items": {"type": "string"}, "uniqueItems": true},
|
"volumes": {"type": "array", "items": {"type": "string"}, "uniqueItems": true},
|
||||||
"volume_driver": {"type": "string"},
|
"volume_driver": {"type": "string"},
|
||||||
|
|
Loading…
Reference in New Issue