mirror of https://github.com/docker/docs.git
Merge pull request #9 from BrianBland/master
Adds basic READMEs to inmemory and filesystem storage drivers
This commit is contained in:
commit
c10eb5286a
|
@ -0,0 +1,8 @@
|
||||||
|
Docker-Registry Filesystem Storage Driver
|
||||||
|
=========================================
|
||||||
|
|
||||||
|
An implementation of the `storagedriver.StorageDriver` interface which uses the local filesystem.
|
||||||
|
|
||||||
|
## Parameters
|
||||||
|
|
||||||
|
`rootdirectory`: (optional) The root directory tree in which all registry files will be stored. Defaults to `/tmp/registry/storage`.
|
|
@ -0,0 +1,10 @@
|
||||||
|
Docker-Registry In-Memory Storage Driver
|
||||||
|
=========================================
|
||||||
|
|
||||||
|
An implementation of the `storagedriver.StorageDriver` interface which uses local memory for object storage.
|
||||||
|
|
||||||
|
**IMPORTANT**: This storage driver *does not* persist data across runs, and primarily exists for testing.
|
||||||
|
|
||||||
|
## Parameters
|
||||||
|
|
||||||
|
None
|
Loading…
Reference in New Issue