mirror of
https://github.com/containers/skopeo.git
synced 2025-10-21 02:45:56 +00:00
These files are used by deb and rpm packages, so I'd rather have them upstream than maintain in 2 separate places. Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
29 lines
891 B
Plaintext
29 lines
891 B
Plaintext
# storage.conf is the configuration file for all tools
|
|
# that share the containers/storage libraries
|
|
# See man 5 containers-storage.conf for more information
|
|
|
|
# The "container storage" table contains all of the server options.
|
|
[storage]
|
|
|
|
# Default Storage Driver
|
|
driver = "overlay"
|
|
|
|
# Temporary storage location
|
|
runroot = "/var/run/containers/storage"
|
|
|
|
# Primary read-write location of container storage
|
|
graphroot = "/var/lib/containers/storage"
|
|
|
|
[storage.options]
|
|
# AdditionalImageStores is used to pass paths to additional read-only image stores
|
|
# Must be comma separated list.
|
|
additionalimagestores = [
|
|
]
|
|
|
|
# Size is used to set a maximum size of the container image. Only supported by
|
|
# certain container storage drivers (currently overlay, zfs, vfs, btrfs)
|
|
size = ""
|
|
|
|
# OverrideKernelCheck tells the driver to ignore kernel checks based on kernel version
|
|
override_kernel_check = "true"
|