There is huge difference in how fast containers deleted between ubuntu and arch linux:
# ubuntu
$ time docker rm 2761334a4236
2761334a4236
real 0m0.025s
user 0m0.017s
sys 0m0.004s
# arch linux
$ time docker rm 190b9f1b195b
190b9f1b195b
docker rm 190b9f1b195b 0.08s user 0.01s system 6% cpu 1.356 total
I suspect that there is big difference on how docker utilize ubuntu and arch's filesystems but I didn't found clear explanation on how can make it faster on arch linux.
My questions are:
- Is it possible to make docker to delete containers with same speed on arch linux that is on ubuntu?
- How can I achieve that speed?
UPD.