mirror of https://github.com/docker/cli.git
Add examples of storage-opts and log-opts for the daemon
Signed-off-by: Alvin Deng <alvin.q.deng@utexas.edu>
This commit is contained in:
parent
275d8ab8de
commit
d2295d58b2
|
@ -302,6 +302,24 @@ 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"
|
||||
],
|
||||
"log-driver": "json-file",
|
||||
"log-opts": {
|
||||
"max-size": "10m",
|
||||
"max-file": "10"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
##### `dm.thinpooldev`
|
||||
|
||||
Specifies a custom block storage device to use for the thin pool.
|
||||
|
|
Loading…
Reference in New Issue