Skip to content

Commit

Permalink
Merge pull request moby#32723 from alvin319/master
Browse files Browse the repository at this point in the history
Add examples of storage-opts and log-opts for the daemon
  • Loading branch information
Misty Stanley-Jones authored Apr 22, 2017
2 parents 0e9148b + 427a521 commit 80013fd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/reference/commandline/dockerd.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,19 @@ options for `zfs` start with `zfs` and options for `btrfs` start with `btrfs`.

#### Devicemapper options

This is an example of the configuration file for devicemapper on Linux:

```json
{
"storage-driver": "devicemapper",
"storage-opts": [
"dm.thinpooldev=/dev/mapper/thin-pool",
"dm.use_deferred_deletion=true",
"dm.use_deferred_removal=true"
]
}
```

##### `dm.thinpooldev`

Specifies a custom block storage device to use for the thin pool.
Expand Down

0 comments on commit 80013fd

Please sign in to comment.