@@ -6,7 +6,7 @@ Docker-Registry
6
6
About this document
7
7
===================
8
8
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:
10
10
11
11
* check which version of the registry you are running
12
12
* 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
134
134
1. `loglevel` : string, level of debugging. Any of python's
135
135
[logging](http://docs.python.org/2/library/logging.html) module levels :
136
136
` 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.
138
138
1. `storage_redirect` : Redirect resource requested if storage engine supports
139
139
this, e.g. S3 will redirect signed URLs, this can be used to offload the
140
140
server.
@@ -198,7 +198,7 @@ common:
198
198
sqlalchemy_index_database: sqlite:////tmp/docker-registry.db
199
199
` ` `
200
200
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`
202
202
class is used as the search backend.
203
203
204
204
# ## Mirroring Options
@@ -228,7 +228,7 @@ to spawn a [redis-server](http://redis.io/) configured in
228
228
shows an example to enable the LRU cache using the config directive `cache_lru`.
229
229
230
230
Once 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
232
232
things up dramatically since it will reduce roundtrips to S3.
233
233
234
234
All config settings are placed in a `cache` or `cache_lru` section.
@@ -250,10 +250,10 @@ To use and install one of these alternate storages:
250
250
251
251
* `pip install docker-registry-driver-NAME`
252
252
* 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
254
254
* review the storage specific documentation for additional dependency or configuration instructions.
255
255
256
- Currently, we are aware of the following storage driver :
256
+ Currently, we are aware of the following storage drivers :
257
257
258
258
* [elliptics](https://github.com/noxiouz/docker-registry-driver-elliptics)
259
259
* [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
333
333
For developers
334
334
==============
335
335
336
- Read [contribute](CONTRIBUTE .md)
336
+ Read [contributing](CONTRIBUTING .md)
337
337
338
338
[search-endpoint] : http://docs.docker.com/reference/api/docker-io_api/#search
339
339
[SQLAlchemy] : http://docs.sqlalchemy.org/
0 commit comments