@@ -6,7 +6,7 @@ Docker-Registry
66About this document
77===================
88
9- As the documentation evolves with different registry versions, be sure that before reading any further you do :
9+ As the documentation evolves with different registry versions, be sure that before reading any further you:
1010
1111 * check which version of the registry you are running
1212 * switch to the corresponding tag to access the README that matches your product version
@@ -134,7 +134,7 @@ When using the `config_sample.yml`, you can pass all options through as environm
1341341. `loglevel` : string, level of debugging. Any of python's
135135 [logging](http://docs.python.org/2/library/logging.html) module levels :
136136 ` debug` , `info`, `warn`, `error` or `critical`
137- 1. `debug` : boolean, make the `/_ping` endpoint output more useful informations , such as library versions and host information.
137+ 1. `debug` : boolean, make the `/_ping` endpoint output more useful information , such as library versions and host information.
1381381. `storage_redirect` : Redirect resource requested if storage engine supports
139139 this, e.g. S3 will redirect signed URLs, this can be used to offload the
140140 server.
@@ -198,7 +198,7 @@ common:
198198 sqlalchemy_index_database: sqlite:////tmp/docker-registry.db
199199` ` `
200200
201- In this case, the module is imported, and an instance of it's `Index`
201+ In this case, the module is imported, and an instance of its `Index`
202202class is used as the search backend.
203203
204204# ## Mirroring Options
@@ -228,7 +228,7 @@ to spawn a [redis-server](http://redis.io/) configured in
228228shows an example to enable the LRU cache using the config directive `cache_lru`.
229229
230230Once this feature is enabled, all small files (tags, meta-data) will be cached
231- in Redis. When using a remote storage backend (like Amazon S3), it will speeds
231+ in Redis. When using a remote storage backend (like Amazon S3), it will speed
232232things up dramatically since it will reduce roundtrips to S3.
233233
234234All config settings are placed in a `cache` or `cache_lru` section.
@@ -250,10 +250,10 @@ To use and install one of these alternate storages:
250250
251251 * `pip install docker-registry-driver-NAME`
252252 * in the configuration set `storage` to `NAME`
253- * add any other storage dependent configuraiton option to the conf file
253+ * add any other storage dependent configuration option to the conf file
254254 * review the storage specific documentation for additional dependency or configuration instructions.
255255
256- Currently, we are aware of the following storage driver :
256+ Currently, we are aware of the following storage drivers :
257257
258258 * [elliptics](https://github.com/noxiouz/docker-registry-driver-elliptics)
259259 * [swift](https://github.com/bacongobbler/docker-registry-driver-swift)
@@ -333,7 +333,7 @@ For more features and advanced options, have a look at the [advanced features do
333333For developers
334334==============
335335
336- Read [contribute](CONTRIBUTE .md)
336+ Read [contributing](CONTRIBUTING .md)
337337
338338[search-endpoint] : http://docs.docker.com/reference/api/docker-io_api/#search
339339[SQLAlchemy] : http://docs.sqlalchemy.org/
0 commit comments