2015-06-08 00:58:53 +00:00
|
|
|
<!--[metadata]>
|
|
|
|
+++
|
|
|
|
title = "Filesystem storage driver"
|
|
|
|
description = "Explains how to use the filesystem storage drivers"
|
|
|
|
keywords = ["registry, service, driver, images, storage, filesystem"]
|
2016-05-19 12:52:58 +00:00
|
|
|
[menu.main]
|
|
|
|
parent="smn_storagedrivers"
|
2015-06-08 00:58:53 +00:00
|
|
|
+++
|
|
|
|
<![end-metadata]-->
|
|
|
|
|
2015-04-29 19:20:09 +00:00
|
|
|
|
2015-04-02 15:11:19 +00:00
|
|
|
# Filesystem storage driver
|
2014-12-29 21:59:40 +00:00
|
|
|
|
|
|
|
An implementation of the `storagedriver.StorageDriver` interface which uses the local filesystem.
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2016-01-13 01:34:02 +00:00
|
|
|
`rootdirectory`: (optional) The absolute path to a root directory tree in which
|
|
|
|
to store all registry files. The registry stores all its data here so make sure
|
|
|
|
there is adequate space available. Defaults to `/var/lib/registry`.
|
2016-04-26 22:20:40 +00:00
|
|
|
`maxthreads`: (optional) The maximum number of simultaneous blocking filesystem
|
|
|
|
operations permitted within the registry. Each operation spawns a new thread and
|
|
|
|
may cause thread exhaustion issues if many are done in parallel. Defaults to
|
|
|
|
`100`, and can be no lower than `25`.
|