864398
# This file is is the configuration file for all tools
864398
# that use the containers/storage library.
864398
# See man 5 containers-storage.conf for more information
864398
# The "container storage" table contains all of the server options.
864398
[storage]
864398
864398
# Default Storage Driver
864398
driver = "overlay"
864398
864398
# Temporary storage location
864398
runroot = "/var/run/containers/storage"
864398
864398
# Primary Read/Write location of container storage
864398
graphroot = "/var/lib/containers/storage"
864398
864398
[storage.options]
864398
# Storage options to be passed to underlying storage drivers
864398
864398
# AdditionalImageStores is used to pass paths to additional Read/Only image stores
864398
# Must be comma separated list.
864398
additionalimagestores = [
864398
]
864398
864398
# Size is used to set a maximum size of the container image.  Only supported by
864398
# certain container storage drivers.
864398
size = ""
864398
864398
# Path to an helper program to use for mounting the file system instead of mounting it
864398
# directly.
864398
#mount_program = "/usr/bin/fuse-overlayfs"
864398
864398
# OverrideKernelCheck tells the driver to ignore kernel checks based on kernel version
864398
override_kernel_check = "true"
864398
864398
# mountopt specifies comma separated list of extra mount options
864398
# mountopt = "nodev,metacopy=on"
864398
864398
# Remap-UIDs/GIDs is the mapping from UIDs/GIDs as they should appear inside of
864398
# a container, to UIDs/GIDs as they should appear outside of the container, and
864398
# the length of the range of UIDs/GIDs.  Additional mapped sets can be listed
864398
# and will be heeded by libraries, but there are limits to the number of
864398
# mappings which the kernel will allow when you later attempt to run a
864398
# container.
864398
#
864398
# remap-uids = 0:1668442479:65536
864398
# remap-gids = 0:1668442479:65536
864398
864398
# Remap-User/Group is a name which can be used to look up one or more UID/GID
864398
# ranges in the /etc/subuid or /etc/subgid file.  Mappings are set up starting
864398
# with an in-container ID of 0 and the a host-level ID taken from the lowest
864398
# range that matches the specified name, and using the length of that range.
864398
# Additional ranges are then assigned, using the ranges which specify the
864398
# lowest host-level IDs first, to the lowest not-yet-mapped container-level ID,
864398
# until all of the entries have been used for maps.
864398
#
864398
# remap-user = "storage"
864398
# remap-group = "storage"
864398
864398
[storage.options.thinpool]
864398
# Storage Options for thinpool
864398
864398
# autoextend_percent determines the amount by which pool needs to be
864398
# grown. This is specified in terms of % of pool size. So a value of 20 means
864398
# that when threshold is hit, pool will be grown by 20% of existing
864398
# pool size.
864398
# autoextend_percent = "20"
864398
864398
# autoextend_threshold determines the pool extension threshold in terms
864398
# of percentage of pool size. For example, if threshold is 60, that means when
864398
# pool is 60% full, threshold has been hit.
864398
# autoextend_threshold = "80"
864398
864398
# basesize specifies the size to use when creating the base device, which
864398
# limits the size of images and containers.
864398
# basesize = "10G"
864398
864398
# blocksize specifies a custom blocksize to use for the thin pool.
864398
# blocksize="64k"
864398
864398
# directlvm_device specifies a custom block storage device to use for the
864398
# thin pool. Required if you setup devicemapper.
864398
# directlvm_device = ""
864398
864398
# directlvm_device_force wipes device even if device already has a filesystem.
864398
# directlvm_device_force = "True"
864398
864398
# fs specifies the filesystem type to use for the base device.
864398
# fs="xfs"
864398
864398
# log_level sets the log level of devicemapper.
864398
# 0: LogLevelSuppress 0 (Default)
864398
# 2: LogLevelFatal
864398
# 3: LogLevelErr
864398
# 4: LogLevelWarn
864398
# 5: LogLevelNotice
864398
# 6: LogLevelInfo
864398
# 7: LogLevelDebug
864398
# log_level = "7"
864398
864398
# min_free_space specifies the min free space percent in a thin pool require for
864398
# new device creation to succeed. Valid values are from 0% - 99%.
864398
# Value 0% disables
864398
# min_free_space = "10%"
864398
864398
# mkfsarg specifies extra mkfs arguments to be used when creating the base.
864398
# device.
864398
# mkfsarg = ""
864398
864398
# use_deferred_removal marks devicemapper block device for deferred removal.
864398
# If the thinpool is in use when the driver attempts to remove it, the driver 
864398
# tells the kernel to remove it as soon as possible. Note this does not free
864398
# up the disk space, use deferred deletion to fully remove the thinpool.
864398
# use_deferred_removal = "True"
864398
864398
# use_deferred_deletion marks thinpool device for deferred deletion.
864398
# If the device is busy when the driver attempts to delete it, the driver
864398
# will attempt to delete device every 30 seconds until successful.
864398
# If the program using the driver exits, the driver will continue attempting
864398
# to cleanup the next time the driver is used. Deferred deletion permanently
864398
# deletes the device and all data stored in device will be lost.
864398
# use_deferred_deletion = "True"
864398
864398
# xfs_nospace_max_retries specifies the maximum number of retries XFS should
864398
# attempt to complete IO when ENOSPC (no space) error is returned by
864398
# underlying storage device.
864398
# xfs_nospace_max_retries = "0"
864398
864398
# If specified, use OSTree to deduplicate files with the overlay backend
864398
ostree_repo = ""
864398
864398
# Set to skip a PRIVATE bind mount on the storage home directory.  Only supported by
864398
# certain container storage drivers
864398
skip_mount_home = "false"