We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://docs.docker.com/engine/userguide/storagedriver/device-mapper-driver/#configure-direct-lvm-mode-for-production
In Docker 17.06 and higher, Docker can manage the block device for you, simplifying configuration of direct-lvm mode.
They now have options to simply pass in dm.directlvm_device="/dev/xvdf" to allow docker to configure the raw device.
The full example is
"storage-driver": "devicemapper", "storage-opts": [ "dm.directlvm_device=/dev/xdf", "dm.thinp_percent=95", "dm.thinp_metapercent=1", "dm.thinp_autoextend_threshold=80", "dm.thinp_autoextend_percent=20", "dm.directlvm_device_force=false" ] }```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://docs.docker.com/engine/userguide/storagedriver/device-mapper-driver/#configure-direct-lvm-mode-for-production
In Docker 17.06 and higher, Docker can manage the block device for you, simplifying configuration of direct-lvm mode.
They now have options to simply pass in dm.directlvm_device="/dev/xvdf" to allow docker to configure the raw device.
The full example is
The text was updated successfully, but these errors were encountered: