docs: correct casing/quoting on sentences
This commit is contained in:
38
README.md
38
README.md
@@ -77,15 +77,15 @@ Create a redis service named lolipop:
|
||||
dokku redis:create lolipop
|
||||
```
|
||||
|
||||
You can also specify the image and image version to use for the service. It *must* be compatible with the ${plugin_image} image.
|
||||
You can also specify the image and image version to use for the service. It *must* be compatible with the redis image.
|
||||
|
||||
```shell
|
||||
export REDIS_IMAGE="${PLUGIN_IMAGE}"
|
||||
export REDIS_IMAGE="redis"
|
||||
export REDIS_IMAGE_VERSION="${PLUGIN_IMAGE_VERSION}"
|
||||
dokku redis:create lolipop
|
||||
```
|
||||
|
||||
You can also specify custom environment variables to start the redis service in semi-colon separated form.
|
||||
You can also specify custom environment variables to start the redis service in semi-colon separated form.
|
||||
|
||||
```shell
|
||||
export REDIS_CUSTOM_ENV="USER=alpha;HOST=beta"
|
||||
@@ -181,7 +181,7 @@ flags:
|
||||
- `-a|--alias "BLUE_DATABASE"`: an alternative alias to use for linking to an app via environment variable
|
||||
- `-q|--querystring "pool=5"`: ampersand delimited querystring arguments to append to the service link
|
||||
|
||||
A redis service can be linked to a container. This will use native docker links via the docker-options plugin. Here we link it to our 'playground' app.
|
||||
A redis service can be linked to a container. This will use native docker links via the docker-options plugin. Here we link it to our 'playground' app.
|
||||
|
||||
> NOTE: this will restart your app
|
||||
|
||||
@@ -212,14 +212,14 @@ The host exposed here only works internally in docker containers. If you want yo
|
||||
dokku redis:link other_service playground
|
||||
```
|
||||
|
||||
It is possible to change the protocol for redis_url by setting the environment variable redis_database_scheme on the app. Doing so will after linking will cause the plugin to think the service is not linked, and we advise you to unlink before proceeding.
|
||||
It is possible to change the protocol for `REDIS_URL` by setting the environment variable `REDIS_DATABASE_SCHEME` on the app. Doing so will after linking will cause the plugin to think the service is not linked, and we advise you to unlink before proceeding.
|
||||
|
||||
```shell
|
||||
dokku config:set playground REDIS_DATABASE_SCHEME=redis2
|
||||
dokku redis:link lolipop playground
|
||||
```
|
||||
|
||||
This will cause redis_url to be set as:
|
||||
This will cause `REDIS_URL` to be set as:
|
||||
|
||||
```
|
||||
redis2://lolipop:SOME_PASSWORD@dokku-redis-lolipop:6379/lolipop
|
||||
@@ -264,13 +264,13 @@ dokku redis:connect lolipop
|
||||
dokku redis:enter <service>
|
||||
```
|
||||
|
||||
A bash prompt can be opened against a running service. Filesystem changes will not be saved to disk.
|
||||
A bash prompt can be opened against a running service. Filesystem changes will not be saved to disk.
|
||||
|
||||
```shell
|
||||
dokku redis:enter lolipop
|
||||
```
|
||||
|
||||
You may also run a command directly against the service. Filesystem changes will not be saved to disk.
|
||||
You may also run a command directly against the service. Filesystem changes will not be saved to disk.
|
||||
|
||||
```shell
|
||||
dokku redis:enter lolipop touch /tmp/test
|
||||
@@ -283,10 +283,10 @@ dokku redis:enter lolipop touch /tmp/test
|
||||
dokku redis:expose <service> <ports...>
|
||||
```
|
||||
|
||||
Expose the service on the service's normal ports, allowing access to it from the public interface (0. 0. 0. 0):
|
||||
Expose the service on the service's normal ports, allowing access to it from the public interface (`0.0.0.0`):
|
||||
|
||||
```shell
|
||||
dokku redis:expose lolipop ${PLUGIN_DATASTORE_PORTS[@]}
|
||||
dokku redis:expose lolipop 6379
|
||||
```
|
||||
|
||||
### unexpose a previously exposed redis service
|
||||
@@ -296,7 +296,7 @@ dokku redis:expose lolipop ${PLUGIN_DATASTORE_PORTS[@]}
|
||||
dokku redis:unexpose <service>
|
||||
```
|
||||
|
||||
Unexpose the service, removing access to it from the public interface (0. 0. 0. 0):
|
||||
Unexpose the service, removing access to it from the public interface (`0.0.0.0`):
|
||||
|
||||
```shell
|
||||
dokku redis:unexpose lolipop
|
||||
@@ -323,7 +323,7 @@ You can promote the new service to be the primary one:
|
||||
dokku redis:promote other_service playground
|
||||
```
|
||||
|
||||
This will replace redis_url with the url from other_service and generate another environment variable to hold the previous value if necessary. You could end up with the following for example:
|
||||
This will replace `REDIS_URL` with the url from other_service and generate another environment variable to hold the previous value if necessary. You could end up with the following for example:
|
||||
|
||||
```
|
||||
REDIS_URL=redis://other_service:ANOTHER_PASSWORD@dokku-redis-other-service:6379/other_service
|
||||
@@ -401,7 +401,7 @@ Service scripting can be executed using the following commands:
|
||||
dokku redis:app-links <app>
|
||||
```
|
||||
|
||||
List all redis services that are linked to the 'playground' app.
|
||||
List all redis services that are linked to the 'playground' app.
|
||||
|
||||
```shell
|
||||
dokku redis:app-links playground
|
||||
@@ -435,7 +435,7 @@ dokku redis:clone lolipop lolipop-2
|
||||
dokku redis:exists <service>
|
||||
```
|
||||
|
||||
Here we check if the lolipop redis service exists.
|
||||
Here we check if the lolipop redis service exists.
|
||||
|
||||
```shell
|
||||
dokku redis:exists lolipop
|
||||
@@ -448,7 +448,7 @@ dokku redis:exists lolipop
|
||||
dokku redis:linked <service> <app>
|
||||
```
|
||||
|
||||
Here we check if the lolipop redis service is linked to the 'playground' app.
|
||||
Here we check if the lolipop redis service is linked to the 'playground' app.
|
||||
|
||||
```shell
|
||||
dokku redis:linked lolipop playground
|
||||
@@ -461,7 +461,7 @@ dokku redis:linked lolipop playground
|
||||
dokku redis:links <service>
|
||||
```
|
||||
|
||||
List all apps linked to the 'lolipop' redis service.
|
||||
List all apps linked to the 'lolipop' redis service.
|
||||
|
||||
```shell
|
||||
dokku redis:links lolipop
|
||||
@@ -566,7 +566,7 @@ flags:
|
||||
|
||||
- `-u|--use-iam`: use the IAM profile associated with the current server
|
||||
|
||||
Backup the 'lolipop' service to the 'my-s3-bucket' bucket on aws:
|
||||
Backup the 'lolipop' service to the 'my-s3-bucket' bucket on ``AWS`:`
|
||||
|
||||
```shell
|
||||
dokku redis:backup lolipop my-s3-bucket --use-iam
|
||||
@@ -579,7 +579,7 @@ dokku redis:backup lolipop my-s3-bucket --use-iam
|
||||
dokku redis:backup-set-encryption <service> <passphrase>
|
||||
```
|
||||
|
||||
Set the gpg-compatible passphrase for encrypting backups for backups:
|
||||
Set the GPG-compatible passphrase for encrypting backups for backups:
|
||||
|
||||
```shell
|
||||
dokku redis:backup-set-encryption lolipop
|
||||
@@ -592,7 +592,7 @@ dokku redis:backup-set-encryption lolipop
|
||||
dokku redis:backup-unset-encryption <service>
|
||||
```
|
||||
|
||||
Unset the gpg encryption passphrase for backups:
|
||||
Unset the `GPG` encryption passphrase for backups:
|
||||
|
||||
```shell
|
||||
dokku redis:backup-unset-encryption lolipop
|
||||
|
||||
Reference in New Issue
Block a user