Fix thinpool name in storage opts flag

The thinpool created in the example didn't have -tpool in the name, so
if you copy these verbatim this fails.

Signed-off-by: Christy Perez <christy@linux.vnet.ibm.com>
This commit is contained in:
Christy Perez 2016-10-26 15:50:45 -05:00
parent cdbebff817
commit 727c96be61
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ assumes that the Docker daemon is in the `stopped` state.
Now that your storage is configured, configure the Docker daemon to use it. There are two ways to do this. You can set options on the command line if you start the daemon there:
```bash
--storage-driver=devicemapper --storage-opt=dm.thinpooldev=/dev/mapper/docker-thinpool-tpool --storage-opt=dm.use_deferred_removal=true --storage-opt=dm.use_deferred_deletion=true
--storage-driver=devicemapper --storage-opt=dm.thinpooldev=/dev/mapper/docker-thinpool --storage-opt=dm.use_deferred_removal=true --storage-opt=dm.use_deferred_deletion=true
```
You can also set them for startup in the `daemon.json` configuration, for example: