From 05b0f211cfcfde85a337955af141a91fd4fb734a Mon Sep 17 00:00:00 2001 From: "Justin Terry (VM)" Date: Thu, 7 Feb 2019 14:49:18 -0800 Subject: [PATCH] Update Windows LayerFolder docs Signed-off-by: Justin Terry (VM) --- config-windows.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config-windows.md b/config-windows.md index 52798772b..212846794 100644 --- a/config-windows.md +++ b/config-windows.md @@ -5,7 +5,7 @@ The Windows container specification uses APIs provided by the Windows Host Compu ## LayerFolders -**`layerFolders`** (array of strings, REQUIRED) specifies a list of layer folders the container image relies on. The list is ordered from topmost layer to base layer. +**`layerFolders`** (array of strings, REQUIRED) specifies a list of layer folders the container image relies on. The list is ordered from topmost layer to base layer with the last entry being the scratch. `layerFolders` MUST contain at least one entry. ### Example @@ -13,8 +13,10 @@ The Windows container specification uses APIs provided by the Windows Host Compu ```json "windows": { "layerFolders": [ + "C:\\Layers\\layer2", "C:\\Layers\\layer1", - "C:\\Layers\\layer2" + "C:\\Layers\\layer-base", + "C:\\scratch", ] } ```