Skip to content

Commit

Permalink
Merge pull request #1 from wking/mount-docs
Browse files Browse the repository at this point in the history
Compatible config.json/runtime.json documentation for mounts
  • Loading branch information
LK4D4 committed Sep 2, 2015
2 parents 712d57c + 470ab6c commit 40888cd
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions config.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,24 @@ Each record in this array must have configuration in [runtime config](runtime-co
*Example*

```json
"mounts": {
"name": "proc",
"path": "/proc",
}
```
In `runtime.json`:
```json
"mounts": {
"proc": {
"type": "proc",
"source": "proc",
"options": []
}
}
"mounts": [
{
"name": "proc",
"path": "/proc",
},
{
"name": "dev",
"path": "/dev",
},
{
"name": "devpts",
"path": "/dev/pts",
},
{
"name": "data",
"path": "/data",
},
]
```

## Process configuration
Expand Down

0 comments on commit 40888cd

Please sign in to comment.