commit 03e85b5d5951289f2c70a097978cee6fb3efb6b8 (tree) parent 35ee6bb71ba604eae38b80aa6b48fb6642e8e755 Author: Motiejus Jakštys <desired.mta@gmail.com> Date: Mon, 6 Apr 2020 08:15:50 +0300 add podman config Diffstat:
| A | root/podman/etc/containers/storage.conf | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/root/podman/etc/containers/storage.conf b/root/podman/etc/containers/storage.conf @@ -0,0 +1,18 @@ +[storage] + +# Default Storage Driver +driver = "btrfs" + +# Temporary storage location +runroot = "/bigdisk/podman/run/containers/storage" + +# Primary Read/Write location of container storage +graphroot = "/bigdisk/podman/lib/containers/storage" + +[storage.options] + +[storage.options.overlay] +# mountopt specifies comma separated list of extra mount options +mountopt = "nodev" + +[storage.options.thinpool]