Merge pull request #9 from BrianBland/master

Adds basic READMEs to inmemory and filesystem storage drivers
pull/12/head
Stephen Day 2014-12-30 11:02:50 -08:00
commit c10eb5286a
2 changed files with 18 additions and 0 deletions

View 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`.

View 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