Fix Volumes property definition in ContainerConfig
Actually the specification was expecting a 'additionalProperties' for the Volumes data, where in fact it's expecting a map of string pointing to empty object. Signed-off-by: Joel Wurtz <joel.wurtz@gmail.com>
This commit is contained in:
parent
c6378920e1
commit
dc883c0486
1 changed files with 5 additions and 6 deletions
|
@ -838,12 +838,11 @@ definitions:
|
|||
Volumes:
|
||||
description: "An object mapping mount point paths inside the container to empty objects."
|
||||
type: "object"
|
||||
properties:
|
||||
additionalProperties:
|
||||
type: "object"
|
||||
enum:
|
||||
- {}
|
||||
default: {}
|
||||
additionalProperties:
|
||||
type: "object"
|
||||
enum:
|
||||
- {}
|
||||
default: {}
|
||||
WorkingDir:
|
||||
description: "The working directory for commands to run in."
|
||||
type: "string"
|
||||
|
|
Loading…
Add table
Reference in a new issue