Skip to content

Commit

Permalink
Merge pull request opencontainers#999 from jterry75/layerfolder_order
Browse files Browse the repository at this point in the history
Update Windows LayerFolder docs
  • Loading branch information
hqhq authored Mar 25, 2019
2 parents 197975d + 05b0f21 commit ad53dcd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,18 @@ The Windows container specification uses APIs provided by the Windows Host Compu

## <a name="configWindowsLayerFolders" />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

```json
"windows": {
"layerFolders": [
"C:\\Layers\\layer2",
"C:\\Layers\\layer1",
"C:\\Layers\\layer2"
"C:\\Layers\\layer-base",
"C:\\scratch",
]
}
```
Expand Down

0 comments on commit ad53dcd

Please sign in to comment.