Ali Zeinalzadeh
Ali Zeinalzadeh

Reputation: 342

how to make native overlay diff false in docker overlay2?

any idea how to make Native Overlay Diff config to false in docker? here is my docker info config,

docker info
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true

just need to turn Native Overlay Diff:false

Upvotes: 0

Views: 2235

Answers (1)

atline
atline

Reputation: 31654

If no active container there, you can use modprobe -r overlay && modprobe overlay redirect_dir=on && systemctl restart docker to make it false.

See this and this for more detail about this option.

Upvotes: 3

Related Questions