Change storage driver from overlay2 to devicemapper #1910
Unanswered
thirumalaicb
asked this question in
Q&A
Replies: 1 comment
-
I am similarly interested in this. @mook-as does RD plan to support this? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Would it be possible to change the storage driver from overlay2 to devicemapper? I need this as my containers require more storage space.
I referred to the docker documentation and created a JSON file in /etc/docker/daemon.json (I also had to create the docker folder inside /etc) as below.
{
"storage-driver": "devicemapper",
"storage-opts": [
"dm.basesize=20G"
]
}
But the docker info still reflects the storage driver to be overlay2. FYI, I have also tried factory reset, uninstall/reinstall, before removing all the containers and images.
Beta Was this translation helpful? Give feedback.
All reactions