1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# This file is is a TEST configuration file for all tools
# that use the containers/storage library.
# See man 5 containers-storage.conf for more information
# The "container storage" table contains all of the server options.
[storage]
# Default Storage Driver
driver = ""
# Temporary storage location
runroot = "$HOME/$UID/containers/storage"
# Primary Read/Write location of container storage
graphroot = "$HOME/$UID/containers/storage"
# Storage path for rootless users
#
rootless_storage_path = "$HOME/$UID/containers/storage"
[storage.options]
# Storage options to be passed to underlying storage drivers
# AdditionalImageStores is used to pass paths to additional Read/Only image stores
# Must be comma separated list.
additionalimagestores = [
]
[storage.options.overlay]
# mountopt specifies comma separated list of extra mount options
mountopt = "nodev"
[storage.options.thinpool]
# Storage Options for thinpool
|