Browse code

Merge pull request #35946 from joelwurtz/patch-2

Fix Volumes property definition in ContainerConfig

Sebastiaan van Stijn authored on 2018/01/30 13:57:09
Showing 1 changed files
... ...
@@ -842,12 +842,11 @@ definitions:
842 842
       Volumes:
843 843
         description: "An object mapping mount point paths inside the container to empty objects."
844 844
         type: "object"
845
-        properties:
846
-          additionalProperties:
847
-            type: "object"
848
-            enum:
849
-              - {}
850
-            default: {}
845
+        additionalProperties:
846
+          type: "object"
847
+          enum:
848
+            - {}
849
+          default: {}
851 850
       WorkingDir:
852 851
         description: "The working directory for commands to run in."
853 852
         type: "string"