You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/@aws-cdk/cloud-assembly-schema/schema/assets.schema.json
+31
Original file line number
Diff line number
Diff line change
@@ -176,9 +176,40 @@
176
176
"items": {
177
177
"type": "string"
178
178
}
179
+
},
180
+
"cacheFrom": {
181
+
"description": "Cache from options to pass to the `docker build` command. (Default - no cache from options are passed to the build command)",
182
+
"type": "array",
183
+
"items": {
184
+
"$ref": "#/definitions/DockerCacheOption"
185
+
}
186
+
},
187
+
"cacheTo": {
188
+
"description": "Cache to options to pass to the `docker build` command. (Default - no cache to options are passed to the build command)",
189
+
"$ref": "#/definitions/DockerCacheOption"
179
190
}
180
191
}
181
192
},
193
+
"DockerCacheOption": {
194
+
"description": "Options for configuring the Docker cache backend",
195
+
"type": "object",
196
+
"properties": {
197
+
"type": {
198
+
"description": "The type of cache to use.\nRefer to https://docs.docker.com/build/cache/backends/ for full list of backends. (Default - unspecified)",
199
+
"type": "string"
200
+
},
201
+
"params": {
202
+
"description": "Any parameters to pass into the docker cache backend configuration.\nRefer to https://docs.docker.com/build/cache/backends/ for cache backend configuration. (Default {} No options provided)",
0 commit comments