Adds basic READMEs to inmemory and filesystem storage drivers
This commit is contained in:
parent
6aa51bb7f1
commit
5880dcfdba
2 changed files with 18 additions and 0 deletions
8
storagedriver/filesystem/README.md
Normal file
8
storagedriver/filesystem/README.md
Normal file
|
@ -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`.
|
10
storagedriver/inmemory/README.md
Normal file
10
storagedriver/inmemory/README.md
Normal file
|
@ -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 a new issue